From 419d116f16d15cb15bd89dc79cc03134deac9294 Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Thu, 7 May 2020 18:03:07 +0200 Subject: [PATCH] Lint Gosh do I really not know the alphabet? --- synapse/storage/data_stores/main/devices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synapse/storage/data_stores/main/devices.py b/synapse/storage/data_stores/main/devices.py index 84a6702feb..f4e3c768e4 100644 --- a/synapse/storage/data_stores/main/devices.py +++ b/synapse/storage/data_stores/main/devices.py @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. import logging -from typing import List, Optional, Tuple, Set +from typing import List, Optional, Set, Tuple from six import iteritems @@ -676,7 +676,7 @@ class DeviceWorkerStore(SQLBaseStore): table="device_lists_remote_resync", keyvalues=None, retcols=("user_id",), - desc="get_user_ids_requiring_device_list_resync" + desc="get_user_ids_requiring_device_list_resync", ) return {row["user_id"] for row in rows}