Get human-readable description of operation.
(self, operation: str)
| 113 | return list(self.data["operations"].keys()) |
| 114 | |
| 115 | def get_description(self, operation: str) -> str: |
| 116 | """Get human-readable description of operation.""" |
| 117 | return self.get_operation(operation).get("description", "") |
| 118 | |
| 119 | def print_summary(self) -> None: |
| 120 | """Print a summary of all operations and their dependencies.""" |
nothing calls this directly
no test coverage detected