pep8: Add compliance with rule E261 to set_default_streams.py.

This commit is contained in:
Aditya Bansal 2017-05-07 20:45:34 +05:30 committed by Tim Abbott
parent 7271fc8a7b
commit 8a6617e304
1 changed files with 1 additions and 1 deletions

View File

@ -57,6 +57,6 @@ set of streams (which can be empty, with `--streams=`).", file=sys.stderr)
stream_dict = {
stream.strip(): {"description": stream.strip(), "invite_only": False}
for stream in options["streams"].split(",")
} # type: Dict[Text, Dict[Text, Any]]
} # type: Dict[Text, Dict[Text, Any]]
realm = get_realm(options["string_id"])
set_default_streams(realm, stream_dict)