From ac8e6ffeb6f910f00115dfd62810e483a7a7f5eb Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Sun, 26 May 2024 14:15:18 +0200 Subject: [PATCH] Updates to the configs --- cognee/infrastructure/databases/relational/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/infrastructure/databases/relational/config.py b/cognee/infrastructure/databases/relational/config.py index 803ea14d9..396fd4393 100644 --- a/cognee/infrastructure/databases/relational/config.py +++ b/cognee/infrastructure/databases/relational/config.py @@ -16,7 +16,7 @@ class RelationalConfig(BaseSettings): db_name=db_name, db_path=db_path ) - db_file_path = os.path.join(db_path, db_name) + db_file_path:str = os.path.join(db_path, db_name) database_path: str = os.path.join(config.system_root_directory, "databases") database_directory_path: str = db_path