diff --git a/gixy/cli/argparser.py b/gixy/cli/argparser.py index 9a88082..16a476a 100644 --- a/gixy/cli/argparser.py +++ b/gixy/cli/argparser.py @@ -118,8 +118,8 @@ class ArgsParser(ArgumentParser): for action in self._actions: config_file_keys = self.get_possible_config_keys(action) if config_file_keys and not action.is_positional_arg and \ - already_on_command_line(existing_command_line_args, - action.option_strings): + already_on_command_line(existing_command_line_args, + action.option_strings): value = getattr(parsed_namespace, action.dest, None) if value is not None: if type(value) is bool: diff --git a/gixy/cli/main.py b/gixy/cli/main.py index 881f53c..a1120d2 100644 --- a/gixy/cli/main.py +++ b/gixy/cli/main.py @@ -11,7 +11,6 @@ from gixy.core.config import Config from gixy.cli.argparser import create_parser from gixy.core.exceptions import InvalidConfiguration - LOG = logging.getLogger()