Skip to content

Commit

Permalink
fix duplicate keyword arg get_engine
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Dec 17, 2024
1 parent a498a89 commit f3bb261
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SHELL := /bin/bash
PROJECT := tagpack-tool
VENV := .venv
RELEASE := 'v25.01.0a8'
RELEASE := 'v25.01.0a9'
# RELEASESEM := 'v1.9.0'

-include .env
Expand Down
2 changes: 1 addition & 1 deletion src/tagstore/db/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_db_engine(db_url, **kwargs):


def get_db_engine_async(db_url, **kwargs):
return create_async_engine(db_url, echo=True, **kwargs)
return create_async_engine(db_url, **kwargs)


def get_table_ddl_sql():
Expand Down

0 comments on commit f3bb261

Please sign in to comment.