Fix sqlite3.ProgrammingError: Incorrect number of bindings supplied. The current statement uses 1, and there are 0 supplied. (Thank you roughnecks)

This commit is contained in:
Schimon Jehudah 2024-04-06 21:29:03 +00:00
parent 8e45ebc071
commit b69953eb7f
2 changed files with 2 additions and 4 deletions

View file

@ -1945,8 +1945,6 @@ async def mark_all_as_read(db_file):
"""
)
for ix in ixs: cur.execute(sql, ix)
cur.execute(sql)
async def delete_entry(cur, ix):

View file

@ -1,2 +1,2 @@
__version__ = '0.1.56'
__version_info__ = (0, 1, 56)
__version__ = '0.1.57'
__version_info__ = (0, 1, 57)