Get this property's Python name.
(self)
| 222 | |
| 223 | @property |
| 224 | def py_name(self) -> str: |
| 225 | """Get this property's Python name.""" |
| 226 | return snake_case(self.name) |
| 227 | |
| 228 | @property |
| 229 | def py_annotation(self): |
nothing calls this directly
no test coverage detected