Skip to content

Commit 94fec3c

Browse files
authored
Fixed
1 parent 3ab0e3d commit 94fec3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from config import DB_URI
99

1010
def start() -> scoped_session:
11-
engine = create_engine(Config.DB_URI, client_encoding="utf8")
11+
engine = create_engine(DB_URI, client_encoding="utf8")
1212
BASE.metadata.bind = engine
1313
BASE.metadata.create_all(engine)
1414
return scoped_session(sessionmaker(bind=engine, autoflush=False))

0 commit comments

Comments
 (0)