From ee9b59321cab6b84d16acb7cc918113cc92cf46b Mon Sep 17 00:00:00 2001 From: Rishi Gupta Date: Thu, 15 Dec 2016 08:04:24 -0800 Subject: [PATCH] populate_db: Refactor create_streams. Remove unused field from stream_dict. --- zilencer/management/commands/populate_db.py | 1 - 1 file changed, 1 deletion(-) diff --git a/zilencer/management/commands/populate_db.py b/zilencer/management/commands/populate_db.py index 08f1251fea..a96194c184 100644 --- a/zilencer/management/commands/populate_db.py +++ b/zilencer/management/commands/populate_db.py @@ -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()