Fixed UP032 (f-string): Use f-string instead of format call

This commit is contained in:
Teal Dulcet
2025-06-20 02:40:03 -07:00
parent 04ed752948
commit 562f76e61f
13 changed files with 73 additions and 73 deletions
+1 -1
View File
@@ -164,7 +164,7 @@ def migration_12(env):
try:
table = table[0]
c = conn.cursor()
dropcmd = "DROP TABLE {}".format(table)
dropcmd = f"DROP TABLE {table}"
c.execute(dropcmd)
except:
print("Failed to drop table", table)