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