Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ import json
|
|
18 |
class CRMJABot:
|
19 |
def __init__(self):
|
20 |
self.db = DatabaseManager()
|
21 |
-
self.material_generator = StudyMaterialGenerator(self.db)
|
22 |
self.planner = StudyPlanGenerator(self.db)
|
23 |
self.performance = PerformanceAnalyzer(self.db.get_connection()) # Corrigido aqui
|
24 |
|
|
|
18 |
class CRMJABot:
|
19 |
def __init__(self):
|
20 |
self.db = DatabaseManager()
|
21 |
+
self.material_generator = StudyMaterialGenerator(self.db.get_connection())
|
22 |
self.planner = StudyPlanGenerator(self.db)
|
23 |
self.performance = PerformanceAnalyzer(self.db.get_connection()) # Corrigido aqui
|
24 |
|