From b82abbffe6cfeb8806e61e883849e77b10b32daf Mon Sep 17 00:00:00 2001 From: Aditya Bansal Date: Thu, 1 Jun 2017 00:48:38 +0530 Subject: [PATCH] pep8: Add compliance with rule E261 to api/examples/upload-file. --- examples/upload-file | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/upload-file b/examples/upload-file index 25e0da8..614f7ac 100755 --- a/examples/upload-file +++ b/examples/upload-file @@ -32,7 +32,7 @@ from typing import IO import zulip class StringIO(_StringIO): - name = '' # https://github.com/python/typeshed/issues/598 + name = '' # https://github.com/python/typeshed/issues/598 usage = """upload-file --user= --api-key= [options] @@ -51,7 +51,7 @@ parser.add_option_group(zulip.generate_option_group(parser)) client = zulip.init_from_options(options) -file = None # type: IO +file = None # type: IO if options.file_path: file = open(options.file_path, 'rb') else: