mirror of https://github.com/zulip/zulip.git
pep8: Add compliance with rule E261 to enqueue_file.py.
This commit is contained in:
parent
6a53c53588
commit
d8db632d21
|
@ -39,7 +39,7 @@ You can use "-" to represent stdin.
|
|||
file_name = options['file_name']
|
||||
|
||||
if file_name == '-':
|
||||
f = sys.stdin # type: IO[str]
|
||||
f = sys.stdin # type: IO[str]
|
||||
else:
|
||||
f = open(file_name)
|
||||
|
||||
|
|
Loading…
Reference in New Issue