Skip to content

Commit

Permalink
flake8 fixes to recent edits
Browse files Browse the repository at this point in the history
  • Loading branch information
micahjohnson150 committed Oct 30, 2021
1 parent 9461ca6 commit 1c1e3c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inicheck/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .utilities import get_relative_to_cfg, mk_lst

# Unused import required for get_checkers to work.
from . import checkers as checkers_module
from . import checkers as checkers_module # noqa

DEBUG = False
FULL_DEBUG = False
Expand Down
3 changes: 2 additions & 1 deletion inicheck/entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,4 +190,5 @@ def __init__(self, name=None, parseable_line=None):
elif str(self.allow_none).lower() == 'true':
self.allow_none = True
else:
raise ValueError('Unrecognized allow_none in config entry named {}'.format(self.name))
raise ValueError('Unrecognized allow_none in config entry named {}'
''.format(self.name))

0 comments on commit 1c1e3c6

Please sign in to comment.