Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ class OntologyRegistry:
|
|
43 |
|
44 |
class RelationshipEngine:
|
45 |
def __init__(self, db_path=':memory:'):
|
46 |
-
self.conn = sqlite3.connect(db_path)
|
47 |
self.setup_database()
|
48 |
|
49 |
def setup_database(self):
|
|
|
43 |
|
44 |
class RelationshipEngine:
|
45 |
def __init__(self, db_path=':memory:'):
|
46 |
+
self.conn = sqlite3.connect(db_path, check_same_thread=False) # Add this flag
|
47 |
self.setup_database()
|
48 |
|
49 |
def setup_database(self):
|