(self, max_angle: float = 5.0, expand: bool = False)
| 159 | """ |
| 160 | |
| 161 | def __init__(self, max_angle: float = 5.0, expand: bool = False) -> None: |
| 162 | self.max_angle = max_angle |
| 163 | self.expand = expand |
| 164 | |
| 165 | def extra_repr(self) -> str: |
| 166 | return f"max_angle={self.max_angle}, expand={self.expand}" |
nothing calls this directly
no outgoing calls
no test coverage detected