reintroduce E203, black does not like that one

This commit is contained in:
dni ⚡
2023-04-17 08:38:12 +02:00
parent 0b596c00ca
commit 06fa6c10c1
7 changed files with 14 additions and 10 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ async def m002_add_fields_to_apipayments(db):
for ext in ["withdraw", "events", "lnticket", "paywall", "tpos"]:
prefix = f"#{ext} "
if row["memo"].startswith(prefix):
new = row["memo"][len(prefix):]
new = row["memo"][len(prefix) :]
await db.execute(
"""
UPDATE apipayments SET extra = ?, memo = ?