We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 566d80d commit a5ff0a7Copy full SHA for a5ff0a7
1 file changed
remove-json-keys/src/remove_json_keys/lib/settings.py
@@ -35,7 +35,7 @@ def load(cli):
35
for forbidden in ('default_val', 'parser'): # remove custom attrs
36
kwargs.pop(forbidden, None)
37
argp.add_argument(*args, **kwargs)
38
- cli.config.__dict__.update({ key:val for key,val in vars(argp.parse_args()).items() if val is not None})
+ cli.config.__dict__.update({ key:val for key,val in vars(argp.parse_args()).items() if val is not None })
39
40
# Init cli.config vals
41
for name, ctrl in vars(controls).items():
0 commit comments