From 54df43dc4d7d18e72dd23005ef2fdb7019cc2095 Mon Sep 17 00:00:00 2001 From: Desire Bah Bioh Date: Wed, 25 Sep 2024 14:36:42 -0400 Subject: [PATCH] Update store.py old code is giving a logging error --- objectbox/store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objectbox/store.py b/objectbox/store.py index de9d109..2b25ac5 100644 --- a/objectbox/store.py +++ b/objectbox/store.py @@ -209,7 +209,7 @@ def get_module_path(module: Optional[ModuleType]) -> Optional[str]: def json_file_inside_module_path(module: Optional[ModuleType]) -> Optional[str]: module_path = get_module_path(module) if module_path: - logging.info("Using module path to locate objectbox-model.json: ", module_path) + logging.info(f"Using module path to locate objectbox-model.json: {module_path}") return os.path.join(module_path, "objectbox-model.json") return None