From 7589a0311cf8dce98cc09cb24bbf7f1a55bfbe79 Mon Sep 17 00:00:00 2001 From: "Olivier Wilkinson (reivilibre)" Date: Thu, 27 Aug 2020 10:41:33 +0100 Subject: [PATCH] Antilint again :( --- synapse/storage/database.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/synapse/storage/database.py b/synapse/storage/database.py index 53858db9a3..98aaf13945 100644 --- a/synapse/storage/database.py +++ b/synapse/storage/database.py @@ -1117,10 +1117,7 @@ class DatabasePool(object): @staticmethod def simple_select_onecol_txn( - txn: LoggingTransaction, - table: str, - keyvalues: Dict[str, Any], - retcol: str, + txn: LoggingTransaction, table: str, keyvalues: Dict[str, Any], retcol: str, ) -> List[Any]: sql = ("SELECT %(retcol)s FROM %(table)s") % {"retcol": retcol, "table": table}