pep8: Fix E701 violations.
This commit is contained in:
parent
836e3379c9
commit
1cb7c41786
|
@ -11,7 +11,8 @@ import subprocess
|
||||||
import hashlib
|
import hashlib
|
||||||
from six.moves import range
|
from six.moves import range
|
||||||
|
|
||||||
if False: from typing import Any, Dict, List, Set, Tuple
|
if False:
|
||||||
|
from typing import Any, Dict, List, Set, Tuple
|
||||||
|
|
||||||
parser = optparse.OptionParser()
|
parser = optparse.OptionParser()
|
||||||
parser.add_option('--verbose',
|
parser.add_option('--verbose',
|
||||||
|
|
|
@ -13,7 +13,8 @@ from irc.client import ip_numstr_to_quad, ip_quad_to_numstr, Event, ServerConnec
|
||||||
import zulip
|
import zulip
|
||||||
import optparse
|
import optparse
|
||||||
|
|
||||||
if False: from typing import Any
|
if False:
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
IRC_DOMAIN = "irc.example.com"
|
IRC_DOMAIN = "irc.example.com"
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
# Leaving all the instructions out of this file to avoid having to
|
# Leaving all the instructions out of this file to avoid having to
|
||||||
# sync them as we update the comments.
|
# sync them as we update the comments.
|
||||||
|
|
||||||
if False: from typing import Dict, Optional, Text
|
if False:
|
||||||
|
from typing import Dict, Optional, Text
|
||||||
|
|
||||||
ZULIP_USER = "commit-bot@zulip.com"
|
ZULIP_USER = "commit-bot@zulip.com"
|
||||||
ZULIP_API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
ZULIP_API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
||||||
|
|
Loading…
Reference in a new issue