pep8: Fix E122.

This commit is contained in:
Alex Huang 2016-12-01 23:15:16 -08:00 committed by Tim Abbott
parent 62494eeb97
commit c8ddea16c3
14 changed files with 39 additions and 38 deletions

View File

@ -303,11 +303,11 @@ zulip configuration file under the jabber_mirror section (exceptions are noted
in their help sections). Keys have the same name as options with hyphens in their help sections). Keys have the same name as options with hyphens
replaced with underscores. Zulip configuration options go in the api section, replaced with underscores. Zulip configuration options go in the api section,
as normal.'''.replace("\n", " ") as normal.'''.replace("\n", " ")
) )
parser.add_option('--mode', parser.add_option('--mode',
default=None, default=None,
action='store', action='store',
help= \ help=
'''Which mode to run in. Valid options are "personal" and "public". In '''Which mode to run in. Valid options are "personal" and "public". In
"personal" mode, the mirror uses an individual users' credentials and mirrors "personal" mode, the mirror uses an individual users' credentials and mirrors
all messages they send on Zulip to Jabber and all private Jabber messages to all messages they send on Zulip to Jabber and all private Jabber messages to

View File

@ -23,6 +23,7 @@ except ImportError as e:
EXCLUDED_FILES = """ EXCLUDED_FILES = """
api/integrations/perforce/git_p4.py api/integrations/perforce/git_p4.py
api/setup.py api/setup.py
docs/conf.py
docs/html_unescape.py docs/html_unescape.py
node_modules node_modules
puppet/apt/.forge-release puppet/apt/.forge-release
@ -83,7 +84,7 @@ def check_pep8(files):
failed = False failed = False
ignored_rules = [ ignored_rules = [
'E402', 'E501', 'W503', 'E711', 'E128', 'E226', 'E402', 'E501', 'W503', 'E711', 'E128', 'E226',
'E126', 'E121', 'E122', 'E123', 'E266', 'E265', 'E261', 'E221', 'E303', 'E126', 'E121', 'E123', 'E266', 'E265', 'E261', 'E221', 'E303',
'E241', 'E712', 'E702', 'E401', 'E115', 'E114', 'E731', 'E302', 'E129', 'E241', 'E712', 'E702', 'E401', 'E115', 'E114', 'E731', 'E302', 'E129',
'E741', 'E714', 'W391', 'E713', 'E502', 'E131', 'E305', 'E251', 'E306', 'E741', 'E714', 'W391', 'E713', 'E502', 'E131', 'E305', 'E251', 'E306',
] ]

View File

@ -72,10 +72,10 @@ cache_fillers = {
'client': (lambda: Client.objects.select_related().all(), client_cache_items, 3600*24*7, 10000), 'client': (lambda: Client.objects.select_related().all(), client_cache_items, 3600*24*7, 10000),
'recipient': (lambda: Recipient.objects.select_related().all(), recipient_cache_items, 3600*24*7, 10000), 'recipient': (lambda: Recipient.objects.select_related().all(), recipient_cache_items, 3600*24*7, 10000),
'stream': (lambda: Stream.objects.select_related().all(), stream_cache_items, 3600*24*7, 10000), 'stream': (lambda: Stream.objects.select_related().all(), stream_cache_items, 3600*24*7, 10000),
### Message cache fetching disabled until we can fix the fact that it # Message cache fetching disabled until we can fix the fact that it
### does a bunch of inefficient memcached queries as part of filling # does a bunch of inefficient memcached queries as part of filling
### the display_recipient cache # the display_recipient cache
# 'message': (message_fetch_objects, message_cache_items, 3600 * 24, 1000), # 'message': (message_fetch_objects, message_cache_items, 3600 * 24, 1000),
'huddle': (lambda: Huddle.objects.select_related().all(), huddle_cache_items, 3600*24*7, 10000), 'huddle': (lambda: Huddle.objects.select_related().all(), huddle_cache_items, 3600*24*7, 10000),
'session': (lambda: Session.objects.all(), session_cache_items, 3600*24*7, 10000), 'session': (lambda: Session.objects.all(), session_cache_items, 3600*24*7, 10000),
} # type: Dict[str, Tuple[Callable[[], List[Any]], Callable[[Dict[text_type, Any], Any], None], int, int]] } # type: Dict[str, Tuple[Callable[[], List[Any]], Callable[[Dict[text_type, Any], Any], None], int, int]]

View File

@ -94,8 +94,8 @@ def gather_hot_conversations(user_profile, stream_messages):
teaser_data = {"participants": users, teaser_data = {"participants": users,
"count": count - len(first_few_messages), "count": count - len(first_few_messages),
"first_few_messages": build_message_list(user_profile, "first_few_messages": build_message_list(
first_few_messages)} user_profile, first_few_messages)}
hot_conversation_render_payloads.append(teaser_data) hot_conversation_render_payloads.append(teaser_data)
return hot_conversation_render_payloads return hot_conversation_render_payloads

View File

@ -29,7 +29,7 @@ VALID_DIGEST_DAYS = (1, 2, 3, 4)
def inactive_since(user_profile, cutoff): def inactive_since(user_profile, cutoff):
# type: (UserProfile, datetime.datetime) -> bool # type: (UserProfile, datetime.datetime) -> bool
# Hasn't used the app in the last 24 business-day hours. # Hasn't used the app in the last 24 business-day hours.
most_recent_visit = [row.last_visit for row in \ most_recent_visit = [row.last_visit for row in
UserActivity.objects.filter( UserActivity.objects.filter(
user_profile=user_profile)] user_profile=user_profile)]

View File

@ -406,8 +406,8 @@ class InviteUserTest(ZulipTestCase):
self.login("hamlet@zulip.com") self.login("hamlet@zulip.com")
# Intentionally use a weird string. # Intentionally use a weird string.
self.assert_json_success(self.invite( self.assert_json_success(self.invite(
"""bob-test@zulip.com, carol-test@zulip.com, """bob-test@zulip.com, carol-test@zulip.com,
dave-test@zulip.com dave-test@zulip.com
earl-test@zulip.com""", ["Denmark"])) earl-test@zulip.com""", ["Denmark"]))

View File

@ -424,7 +424,7 @@ def accounts_home(request):
def approximate_unread_count(user_profile): def approximate_unread_count(user_profile):
# type: (UserProfile) -> int # type: (UserProfile) -> int
not_in_home_view_recipients = [sub.recipient.id for sub in \ not_in_home_view_recipients = [sub.recipient.id for sub in
Subscription.objects.filter( Subscription.objects.filter(
user_profile=user_profile, in_home_view=False)] user_profile=user_profile, in_home_view=False)]

View File

@ -20,11 +20,11 @@ ZULIP_ADMINISTRATOR = 'zulip-admin@example.com'
# See http://zulip.readthedocs.io/en/latest/prod-authentication-methods.html # See http://zulip.readthedocs.io/en/latest/prod-authentication-methods.html
# for documentation on our authentication backends. # for documentation on our authentication backends.
AUTHENTICATION_BACKENDS = ( AUTHENTICATION_BACKENDS = (
# 'zproject.backends.EmailAuthBackend', # Email and password; see SMTP setup below # 'zproject.backends.EmailAuthBackend', # Email and password; see SMTP setup below
# 'zproject.backends.GoogleMobileOauth2Backend', # Google Apps, setup below # 'zproject.backends.GoogleMobileOauth2Backend', # Google Apps, setup below
# 'zproject.backends.GitHubAuthBackend', # GitHub auth, setup below # 'zproject.backends.GitHubAuthBackend', # GitHub auth, setup below
# 'zproject.backends.ZulipLDAPAuthBackend', # LDAP, setup below # 'zproject.backends.ZulipLDAPAuthBackend', # LDAP, setup below
# 'zproject.backends.ZulipRemoteUserBackend', # Local SSO, setup docs on readthedocs # 'zproject.backends.ZulipRemoteUserBackend', # Local SSO, setup docs on readthedocs
) )
# To enable Google authentication, you need to do the following: # To enable Google authentication, you need to do the following:
@ -332,7 +332,7 @@ LDAP_APPEND_DOMAIN = None # type: str
# This map defines how to populate attributes of a Zulip user from LDAP. # This map defines how to populate attributes of a Zulip user from LDAP.
AUTH_LDAP_USER_ATTR_MAP = { AUTH_LDAP_USER_ATTR_MAP = {
# Populate the Django user's name from the LDAP directory. # Populate the Django user's name from the LDAP directory.
"full_name": "cn", "full_name": "cn",
} }