(command: type[Command] | None)
| 95 | |
| 96 | |
| 97 | def is_kill(command: type[Command] | None) -> bool: |
| 98 | return command is not None and issubclass(command, KillCommand) |
| 99 | |
| 100 | |
| 101 | def is_yank(command: type[Command] | None) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…