Skip to content

Commit

Permalink
minor style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
buglloc committed Sep 28, 2018
1 parent f92423e commit d3b7721
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gixy/cli/argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ def get_items_for_config_file_output(self, source_to_settings,
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:
Expand Down
1 change: 0 additions & 1 deletion gixy/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from gixy.cli.argparser import create_parser
from gixy.core.exceptions import InvalidConfiguration


LOG = logging.getLogger()


Expand Down

0 comments on commit d3b7721

Please sign in to comment.