diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2018-09-06 11:23:16 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2018-09-06 11:35:19 -0400 |
commit | 3801b8aa035594972c400c8bd036894a388c4ab3 (patch) | |
tree | 3a2dd0efda2fbc85f45a8bb0132bd46fcc9651d8 /synapse/storage | |
parent | update to newer Synapse APIs (diff) | |
download | synapse-3801b8aa035594972c400c8bd036894a388c4ab3.tar.xz |
try to make flake8 and isort happy
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/e2e_room_keys.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/storage/e2e_room_keys.py b/synapse/storage/e2e_room_keys.py index b695570a7b..969f4aef9c 100644 --- a/synapse/storage/e2e_room_keys.py +++ b/synapse/storage/e2e_room_keys.py @@ -13,9 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +import simplejson as json + from twisted.internet import defer + from synapse.api.errors import StoreError -import simplejson as json from ._base import SQLBaseStore @@ -58,7 +60,7 @@ class EndToEndRoomKeyStore(SQLBaseStore): desc="get_e2e_room_key", ) - row["session_data"] = json.loads(row["session_data"]); + row["session_data"] = json.loads(row["session_data"]) defer.returnValue(row) |