Update modules/sqlite_local.py

This commit is contained in:
Nova Cat 2025-01-08 22:13:43 -08:00
parent 9794a20fd5
commit 6c922d3aa8

View file

@ -2,7 +2,7 @@
import sqlite3
__ircat_type__ = "sql.provider" # The type of module
__ircat_requires__ = ["data-path"] # The required config.yml entries.
class SQLiteDataBroker:
class broker:
def __init__(self, data_path):
if not os.path.isfile(data_path):
print("Creating database file...")