1
0
forked from VimPlug/jedi

Sith PEP8

This commit is contained in:
Danilo Bargen
2013-08-09 11:29:24 +02:00
parent 22b11e0706
commit b791817c66

View File

@@ -181,6 +181,7 @@ class TestCase(object):
"\tline: {line}\n"
"\tcolumn: {column}").format(**self.__dict__))
def main(arguments):
debugger = 'pdb' if arguments['--pdb'] else \
'ipdb' if arguments['--ipdb'] else \
@@ -198,7 +199,8 @@ def main(arguments):
else:
t.run(debugger)
elif arguments['run']:
TestCase(arguments['<operation>'], arguments['<path>'],
TestCase(
arguments['<operation>'], arguments['<path>'],
int(arguments['<line>']), int(arguments['<column>'])
).run(debugger, print_result=True)
else: