Commit Graph

3 Commits

Author SHA1 Message Date
W9GFO
f0bc7582c8 refactor(import): update module import to reflect renamed file - Changed import from 'categorize_workflows' to 'create_categories' - Maintains existing functionality with correct module reference - Resolves ModuleNotFoundError when running import_workflows.py
## Description
Updated the import statement in `import_workflows.py` to reference the renamed module `create_categories.py`, resolving a `ModuleNotFoundError` that occurred due to the missing reference to the old module name (`categorize_workflows`).

## Changes
- **Updated Import**: Changed `from categorize_workflows import categorize_by_filename` to `from create_categories import categorize_by_filename` in `import_workflows.py`[3](@ref).

## Related Issue
Closes #[Insert_Issue_Number_Here] (if applicable; otherwise, omit this section)

## Testing
- [x] Tested locally to ensure the script runs without import errors.
- [x] Verified that the `categorize_by_filename` function is accessible and functional.

## Impact
This change ensures the import statement correctly references the existing module after its rename, maintaining functionality without introducing breaking changes[1](@ref).
2025-09-09 17:00:33 +08:00
Praveen Mudalgeri
7d6e4e2222 refactor: merge categorization scripts
Merge the logic from categorize_workflows.py into create_categories.py to simplify the categorization process. The categorize_workflows.py script is now deleted.
2025-08-12 14:29:36 +05:30
enrico
a3a9abf0cb 🚀 Project optimization and cleanup
- Remove deprecated generate_documentation.py (2187 lines, 71MB HTML output)
- Remove unused comprehensive_workflow_renamer.py (396 lines)
- Replace import-workflows.sh with Python import_workflows.py (better error handling)
- Remove Chinese README to simplify project structure
- Enhance run.py with CLI arguments and better configuration
- Update requirements.txt with precise version constraints
- Overall: Removed ~2600+ lines of unused/deprecated code
- Improved: Error handling, logging, and development workflow
2025-06-22 20:03:38 +02:00