From 9d7d2a32fb2f9d089295b70d1feaf7c7c0fffd1d Mon Sep 17 00:00:00 2001 From: Aaron Holmes Date: Thu, 28 Sep 2023 17:41:25 -0700 Subject: [PATCH] Fix typo. --- src/database/BL_Python/database/engine/sqlite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/database/BL_Python/database/engine/sqlite.py b/src/database/BL_Python/database/engine/sqlite.py index 673a5035..5f5e1f6e 100644 --- a/src/database/BL_Python/database/engine/sqlite.py +++ b/src/database/BL_Python/database/engine/sqlite.py @@ -17,7 +17,7 @@ def create( Create a new session factory for SQLite. """ poolclass: type[Pool] | None = None - # if the connection string is an SQLite in-memory database + # if the connection string is a SQLite in-memory database # then make SQLAlchemy maintain an static pool of "connections" # so that the in-memory database is not deallocated. Otherwise, # the database would disappear when a thread is done with it.