diff --git a/workflow_db.py b/workflow_db.py index 35a3986..df5189b 100644 --- a/workflow_db.py +++ b/workflow_db.py @@ -434,6 +434,7 @@ class WorkflowDatabase: if not os.path.exists(self.workflows_dir): print(f"Warning: Workflows directory '{self.workflows_dir}' not found.") return {'processed': 0, 'skipped': 0, 'errors': 0} + workflows_path = Path(self.workflows_dir) json_files = list(workflows_path.rglob("*.json")) # json_files = glob.glob(os.path.join(self.workflows_dir, "*.json"), recursive=True)