Run pyupgrade --py38-plus (#590)

This commit is contained in:
Inada Naoki
2023-05-09 14:10:53 +09:00
committed by GitHub
parent 418b68dc5f
commit 1f906e66c4
8 changed files with 14 additions and 15 deletions

View File

@ -18,7 +18,7 @@ def teardown_function(function):
c = _conns[0]
cur = c.cursor()
for t in _tables:
cur.execute("DROP TABLE {}".format(t))
cur.execute(f"DROP TABLE {t}")
cur.close()
del _tables[:]