Skip to content

Commit b472324

Browse files
committed
Default to echo=False
1 parent d9bdeee commit b472324

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

github_stats_pages/db.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def configure(test: bool = False, echo: bool = False) -> Engine:
2424
return create_engine(sqlite_url, echo=echo)
2525

2626

27-
def create_db_and_tables(test: bool = False):
28-
engine = configure(test=test, echo=True)
27+
def create_db_and_tables(test: bool = False, echo: bool = False):
28+
engine = configure(test=test, echo=echo)
2929
SQLModel.metadata.create_all(engine)
3030
return engine
3131

0 commit comments

Comments
 (0)