dwb2023 commited on
Commit
5ac3adf
·
verified ·
1 Parent(s): 7580068

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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):