Fix flake8 violations
authorJuerg Haefliger <juergh@proton.me>
Fri, 10 Feb 2023 07:34:13 +0000 (08:34 +0100)
committerJuerg Haefliger <juergh@proton.me>
Fri, 10 Feb 2023 07:34:13 +0000 (08:34 +0100)
Signed-off-by: Juerg Haefliger <juergh@proton.me>
annotations
kconfig/annotations.py

index 5caa3b2aa70fcab125ed6d63c7b6b5da6a5944c1..7e7ff5edfe7bea501ac8eadc434b0f41e70be128 100755 (executable)
@@ -28,6 +28,7 @@ SKIP_CONFIGS = (
     'CONFIG_BINDGEN_VERSION_TEXT',
 )
 
+
 def make_parser():
     parser = argparse.ArgumentParser(
         description='Manage Ubuntu kernel .config and annotations',
@@ -68,18 +69,22 @@ def make_parser():
                     help='Validate kernel .config with annotations')
     return parser
 
+
 _ARGPARSER = make_parser()
 
+
 def arg_fail(message):
     print(message)
     _ARGPARSER.print_usage()
     exit(1)
 
+
 def print_result(config, res):
     if res is not None and config not in res:
         res = {config or '*': res}
     print(json.dumps(res, indent=4))
 
+
 def do_query(args):
     if args.arch is None and args.flavour is not None:
         arg_fail('error: --flavour requires --arch')
@@ -87,11 +92,13 @@ def do_query(args):
     res = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour)
     print_result(args.config, res)
 
+
 def do_autocomplete(args):
     a = Annotation(args.file)
     res = (c.removeprefix('CONFIG_') for c in a.search_config())
     print('complete -W "{}" annotations'.format(' '.join(res)))
 
+
 def do_source(args):
     if args.config is None:
         arg_fail('error: --source requires --config')
@@ -100,6 +107,7 @@ def do_source(args):
         exit(1)
     os.system(f'vim -t {args.config}')
 
+
 def do_note(args):
     if args.config is None:
         arg_fail('error: --note requires --config')
@@ -116,6 +124,7 @@ def do_note(args):
     res = a.search_config(config=args.config)
     print_result(args.config, res)
 
+
 def do_write(args):
     if args.config is None:
         arg_fail('error: --write requires --config')
@@ -135,6 +144,7 @@ def do_write(args):
     res = a.search_config(config=args.config)
     print_result(args.config, res)
 
+
 def do_export(args):
     if args.arch is None:
         arg_fail('error: --export requires --arch')
@@ -143,6 +153,7 @@ def do_export(args):
     if conf:
         print(a.to_config(conf))
 
+
 def do_import(args):
     if args.arch is None:
         arg_fail('error: --arch is required with --import')
@@ -159,6 +170,7 @@ def do_import(args):
     # Save back to annotations
     a.save(args.file)
 
+
 def do_update(args):
     if args.arch is None:
         arg_fail('error: --arch is required with --update')
@@ -174,6 +186,7 @@ def do_update(args):
     # Save back to annotations
     a.save(args.file)
 
+
 def do_check(args):
     # Determine arch and flavour
     if args.arch is None:
@@ -210,6 +223,7 @@ def do_check(args):
     print(f"check-config: {good}/{total} checks passed -- exit {ret}")
     exit(ret)
 
+
 def autodetect_annotations(args):
     if args.file:
         return
@@ -221,6 +235,7 @@ def autodetect_annotations(args):
     except Exception:
         arg_fail('error: could not determine DEBDIR, try using: --file/-f')
 
+
 def main():
     # Prevent broken pipe errors when showing output in pipe to other tools
     # (less for example)
@@ -252,5 +267,6 @@ def main():
     else:
         do_query(args)
 
+
 if __name__ == '__main__':
     main()
index 1711257bd7abf2d598910d48917ba2cb896981a9..19fb544a40e246357167ba001f14b7ae458ff995 100644 (file)
@@ -10,6 +10,7 @@ import tempfile
 from ast import literal_eval
 from os.path import dirname, abspath
 
+
 class Config(object):
     def __init__(self, fname: str, arch: str = None, flavour: str = None):
         """
@@ -28,6 +29,7 @@ class Config(object):
         """ Return a JSON representation of the config """
         return json.dumps(self.config, indent=4)
 
+
 class KConfig(Config):
     """
     Parse a .config file, individual config options can be accessed via
@@ -45,6 +47,7 @@ class KConfig(Config):
                 self.config[m.group(1)] = literal_eval("'" + m.group(2) + "'")
                 continue
 
+
 class Annotation(Config):
     """
     Parse body of annotations file