Get a Python name for this command.
(self)
| 589 | |
| 590 | @property |
| 591 | def py_name(self) -> str: |
| 592 | """Get a Python name for this command.""" |
| 593 | return snake_case(self.name) |
| 594 | |
| 595 | @classmethod |
| 596 | def from_json(cls, command, domain) -> "CdpCommand": |
nothing calls this directly
no test coverage detected