lint: Make zulip/__init__.py complaint with E261.

This commit is contained in:
Rohitt Vashishtha 2017-07-07 04:36:57 +05:30 committed by showell
parent 1c8d359546
commit 9d1253ff0d

View file

@ -105,7 +105,7 @@ def _default_client():
def generate_option_group(parser, prefix=''):
# type: (optparse.OptionParser, str) -> optparse.OptionGroup
group = optparse.OptionGroup(parser, 'Zulip API configuration') # type: ignore # https://github.com/python/typeshed/pull/1248
group = optparse.OptionGroup(parser, 'Zulip API configuration') # type: ignore # https://github.com/python/typeshed/pull/1248
group.add_option('--%ssite' % (prefix,),
dest="zulip_site",
help="Zulip server URI",