diff --git a/beeflow/common/db/bdb.py b/beeflow/common/db/bdb.py index 5df5e22d..8e7a3b77 100644 --- a/beeflow/common/db/bdb.py +++ b/beeflow/common/db/bdb.py @@ -80,7 +80,7 @@ def table_exists(db_file, table_name): stmt = f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table_name}';" result = getall(db_file, stmt) if result is None: - result == "" + result = "" return len(result) != 0