ArgumentParser: drop unneeded default=False for args with action='store_true'
authorAlexander Popov <alex.popov@linux.com>
Fri, 13 Jul 2018 23:11:41 +0000 (02:11 +0300)
committerAlexander Popov <alex.popov@linux.com>
Fri, 13 Jul 2018 23:16:08 +0000 (02:16 +0300)
kconfig-hardened-check.py

index d21788a9a154be6c4d4f1b0056e873f2c8c6c468..f3a3b4247f7764bbb1e24d9e3ebe740e4ef23830 100755 (executable)
@@ -216,9 +216,9 @@ def check_config_file(fname):
 
 if __name__ == '__main__':
     parser = ArgumentParser(description='Checks the hardening options in the Linux kernel config')
-    parser.add_argument('-p', '--print', default=False, action='store_true', help='print hardening preferences')
+    parser.add_argument('-p', '--print', action='store_true', help='print hardening preferences')
     parser.add_argument('-c', '--config', help='check the config_file against these preferences')
-    parser.add_argument('--debug', default=False, action='store_true', help='enable internal debug mode')
+    parser.add_argument('--debug', action='store_true', help='enable internal debug mode')
     args = parser.parse_args()
 
     construct_opt_list()