pep8: Add compliance with rule E261 to enqueue_file.py.

This commit is contained in:
Aditya Bansal 2017-05-07 20:45:13 +05:30 committed by Tim Abbott
parent 6a53c53588
commit d8db632d21
1 changed files with 1 additions and 1 deletions

View File

@ -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)