Skip to content

Commit fe60b5c

Browse files
committed
Fix flake8 issues in sith.py
1 parent fd435a7 commit fe60b5c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

sith.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ def show_definitions(self):
176176
def show_errors(self):
177177
sys.stderr.write(self.traceback)
178178
print(("Error with running Script(...).{operation}() with\n"
179-
"\tpath: {path}\n"
180-
"\tline: {line}\n"
181-
"\tcolumn: {column}").format(**self.__dict__))
179+
"\tpath: {path}\n"
180+
"\tline: {line}\n"
181+
"\tcolumn: {column}").format(**self.__dict__))
182182

183183

184184
def main(arguments):
@@ -198,10 +198,10 @@ def main(arguments):
198198
else:
199199
t.run(debugger)
200200
elif arguments['run']:
201-
TestCase(
202-
arguments['<operation>'], arguments['<path>'],
203-
int(arguments['<line>']), int(arguments['<column>'])
204-
).run(debugger, print_result=True)
201+
TestCase(
202+
arguments['<operation>'], arguments['<path>'],
203+
int(arguments['<line>']), int(arguments['<column>'])
204+
).run(debugger, print_result=True)
205205
else:
206206
for _ in range(int(arguments['--maxtries'])):
207207
t = TestCase.generate(arguments['<path>'] or '.')

0 commit comments

Comments
 (0)