Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Mickus Timothee authored and Waino committed Apr 15, 2024
1 parent 0ed070a commit 327b55e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mammoth/translate/translation_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,8 @@ def parse_opt(self, opts):
if type(v) is str:
sys.argv += ['-transforms', v]
else:
assert type(v) is list
sys.argv += ['-transforms', *v]
assert type(v) is list
sys.argv += ['-transforms', *v]
else:
sys.argv += ['-%s' % k, str(v)]

Expand Down

0 comments on commit 327b55e

Please sign in to comment.