PEP 8 fixes.

This commit is contained in:
Matt Clay 2017-06-15 15:54:05 -07:00
parent 938d60472a
commit 3eea649cbb
2 changed files with 3 additions and 3 deletions

View file

@ -283,7 +283,7 @@ class CLI(with_metaclass(ABCMeta, object)):
elif isinstance(value, list): elif isinstance(value, list):
setattr(parser.values, option.dest, [unfrackpath(x) for x in value]) setattr(parser.values, option.dest, [unfrackpath(x) for x in value])
else: else:
pass #FIXME: should we raise options error? pass # FIXME: should we raise options error?
@staticmethod @staticmethod
def unfrack_path(option, opt, value, parser): def unfrack_path(option, opt, value, parser):