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 7e5deaa commit d757f35Copy full SHA for d757f35
tools/utils.py
@@ -225,8 +225,10 @@ def wrap(string):
225
return wrap
226
227
def argparse_filestring_type(string) :
228
- if exists(string) : return string
229
- else : raise argparse.ArgumentTypeError("{0} does not exist in the filesystem.".format(string))
+ if exists(string) :
+ return string
230
+ else :
231
+ raise argparse.ArgumentTypeError("{0}"" does not exist in the filesystem.".format(string))
232
233
def columnate(strings, seperator=", ", chars=80):
234
col_width = max(len(s) for s in strings)
0 commit comments