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:
parent
8e45ebc071
commit
b69953eb7f
2 changed files with 2 additions and 4 deletions
|
@ -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):
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
__version__ = '0.1.56'
|
||||
__version_info__ = (0, 1, 56)
|
||||
__version__ = '0.1.57'
|
||||
__version_info__ = (0, 1, 57)
|
||||
|
|
Loading…
Reference in a new issue