populate_db: Refactor create_streams.

Remove unused field from stream_dict.
This commit is contained in:
Rishi Gupta
2016-12-15 08:04:24 -08:00
committed by Tim Abbott
parent fbf48f7ec6
commit ee9b59321c

View File

@@ -40,7 +40,6 @@ def create_streams(realm, stream_dict):
# type: (Realm, Dict[Text, Dict[Text, Any]]) -> None
stream_dictionary = {
name: {
"realm": realm,
"description": options["description"],
"invite_only": options["invite_only"],
} for name, options in stream_dict.items()