Remove duplicate SessionLocal declaration

This commit is contained in:
nightbug-xx 2025-06-09 16:09:08 +09:00
parent 7e1d28bb55
commit 670613c174

View File

@ -22,5 +22,3 @@ def get_db():
finally:
db.close()
# 세션 클래스 생성
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)