removed line continuation characters (not needed within parentheses)

This commit is contained in:
Philip Eisenlohr 2016-04-05 12:33:14 -04:00
parent 0738684361
commit da29b1a361
1 changed files with 9 additions and 9 deletions

View File

@ -40,12 +40,12 @@ class ASCIItable():
self.__IO__['in'] = name
try:
self.__IO__['out'] = (open(outname,'w') if (not os.path.isfile(outname) \
or os.access( outname, os.W_OK) \
) \
and (not self.__IO__['inPlace'] \
or not os.path.isfile(name) \
or os.access( name, os.W_OK) \
self.__IO__['out'] = (open(outname,'w') if (not os.path.isfile(outname) or
os.access( outname, os.W_OK)
) and
(not self.__IO__['inPlace'] or
not os.path.isfile(name) or
os.access( name, os.W_OK)
) else None) if outname else sys.stdout
except TypeError:
self.__IO__['out'] = outname