From 30b55d2a26fd1e599cf5d0d68c2a06f383fc815c Mon Sep 17 00:00:00 2001 From: swee Date: Wed, 8 Jan 2025 21:32:41 -0800 Subject: [PATCH] Update modules/sqlite_local.py --- modules/sqlite_local.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/sqlite_local.py b/modules/sqlite_local.py index 75af52c..04416de 100644 --- a/modules/sqlite_local.py +++ b/modules/sqlite_local.py @@ -1,6 +1,7 @@ # IRCat module for local SQLite database (default) import sqlite3 -__ircat_type__ = "sql.provider" +__ircat_type__ = "sql.provider" # The type of module +__ircat_requires__ = [data_path] # The required config.yml entries. class SQLiteDataBroker: def __init__(self): if not os.path.isfile(data_path):