Create a skip result.
(cls, command_name: str)
| 82 | |
| 83 | @classmethod |
| 84 | def skip(cls, command_name: str) -> "CommandResult": |
| 85 | """Create a skip result.""" |
| 86 | return cls( |
| 87 | success=True, |
| 88 | command_name=command_name, |
| 89 | result_type="skip", |
| 90 | display="skip", |
| 91 | ) |
| 92 | |
| 93 | |
| 94 | @dataclass |
no outgoing calls