From afb29d695cc1bc8cf1392c821417813542c0f4dd Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 13 May 2025 15:30:17 +0100 Subject: [PATCH] chore: a comment --- app/database/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/database/database.py b/app/database/database.py index 507d0cd..d443a99 100644 --- a/app/database/database.py +++ b/app/database/database.py @@ -17,7 +17,7 @@ engine = create_engine( ) # Create session -SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) +# SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) # Create base class Base = declarative_base()