pep8: Fix E701 violations.

This commit is contained in:
Tommy Ip 2016-11-30 20:45:02 +00:00
parent 836e3379c9
commit 1cb7c41786
3 changed files with 6 additions and 3 deletions

View file

@ -11,7 +11,8 @@ import subprocess
import hashlib
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.add_option('--verbose',

View file

@ -13,7 +13,8 @@ from irc.client import ip_numstr_to_quad, ip_quad_to_numstr, Event, ServerConnec
import zulip
import optparse
if False: from typing import Any
if False:
from typing import Any
IRC_DOMAIN = "irc.example.com"

View file

@ -4,7 +4,8 @@
# Leaving all the instructions out of this file to avoid having to
# 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_API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"