1
0

Antilint again :(

This commit is contained in:
Olivier Wilkinson (reivilibre)
2020-08-27 10:41:33 +01:00
parent bf51d2ffc7
commit 7589a0311c

View File

@@ -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}