(name: str)
| 50 | |
| 51 | |
| 52 | def get_command(name: str) -> PortingModule | None: |
| 53 | needle = name.lower() |
| 54 | for module in PORTED_COMMANDS: |
| 55 | if module.name.lower() == needle: |
| 56 | return module |
| 57 | return None |
| 58 | |
| 59 | |
| 60 | def get_commands(cwd: str | None = None, include_plugin_commands: bool = True, include_skill_commands: bool = True) -> tuple[PortingModule, ...]: |
no outgoing calls
no test coverage detected