pep8: Add compliance with rule E261 to zerver/views/invite.py.

This commit is contained in:
Aditya Bansal 2017-05-18 01:40:59 +05:30
parent 1979476152
commit 35e3d57ed9
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def json_invite_users(request, user_profile,
if notifications_stream and not notifications_stream.invite_only:
stream_names.append(notifications_stream.name)
streams = [] # type: List[Stream]
streams = [] # type: List[Stream]
for stream_name in stream_names:
try:
(stream, recipient, sub) = access_stream_by_name(user_profile, stream_name)