__init__.py 291 B

1234567891011121314
  1. """Python templates module."""
  2. from ...core.module import Module
  3. from ...core.registry import registry
  4. class PythonModule(Module):
  5. """Python templates module."""
  6. name = "python"
  7. description = "Manage Python project and automation templates"
  8. registry.register(PythonModule)