From 00955dcdaba935fa7d6f5ef3b2ab77262b473b95 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Tue, 7 Apr 2020 15:18:16 +0100 Subject: [PATCH] fix lint --- synapse/storage/data_stores/main/devices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synapse/storage/data_stores/main/devices.py b/synapse/storage/data_stores/main/devices.py index b2100bb43a..d2fc8c9794 100644 --- a/synapse/storage/data_stores/main/devices.py +++ b/synapse/storage/data_stores/main/devices.py @@ -749,7 +749,7 @@ class DeviceBackgroundUpdateStore(SQLBaseStore): KEY_COLS = ["stream_id", "destination", "user_id", "device_id"] last_row = progress.get( "last_row", - {"stream_id": 0, "destination": "", "user_id": "", "device_id": "",}, + {"stream_id": 0, "destination": "", "user_id": "", "device_id": ""}, ) def _txn(txn):