(command: type[Command] | None)
| 99 | |
| 100 | |
| 101 | def is_yank(command: type[Command] | None) -> bool: |
| 102 | return command is not None and issubclass(command, YankCommand) |
| 103 | |
| 104 | |
| 105 | # etc |
no outgoing calls
no test coverage detected
searching dependent graphs…