tenseleyflow/jubjubword / a0b20d2

Browse files

fix: Add missing __init__.py files for Django management commands

Django requires __init__.py files in management/ and management/commands/
directories to discover custom management commands. Without these files,
train_hybrid_models and evaluate_hybrid commands won't be found.

This fixes the 'Unknown command: train_hybrid_models' error.
Authored by Claude <noreply@anthropic.com>
SHA
a0b20d2902ac03c0ac2e599e032162734e8a2a7a
Parents
21ab949
Tree
8891e63

2 changed files

StatusFile+-
A backend/jubjub/jubjubword/management/__init__.py 1 0
A backend/jubjub/jubjubword/management/commands/__init__.py 1 0
backend/jubjub/jubjubword/management/__init__.pyadded
@@ -0,0 +1,1 @@
1
+# Django management commands
backend/jubjub/jubjubword/management/commands/__init__.pyadded
@@ -0,0 +1,1 @@
1
+# Django management commands