Skip to content

Commit

Permalink
Remove autocommit arg to sqlite connect call.
Browse files Browse the repository at this point in the history
  • Loading branch information
dowlandaiello committed Oct 16, 2024
1 parent d99c185 commit 2bbce5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ async def main() -> None:
),
timeout=aiohttp.ClientTimeout(total=60),
) as session:
with closing(connect(args.history_db, autocommit=False)) as conn:
with closing(connect(args.history_db)) as conn:
ctx: Ctx[Any] = Ctx(
{
chain_id: [
Expand Down

0 comments on commit 2bbce5e

Please sign in to comment.