Get the value of attribute `name`, or null if it does not exist.
(self, name: str)
| 283 | return self._attribute_token().attrs |
| 284 | |
| 285 | def attrGet(self, name: str) -> None | str | int | float: |
| 286 | """Get the value of attribute `name`, or null if it does not exist.""" |
| 287 | return self._attribute_token().attrGet(name) |
| 288 | |
| 289 | @property |
| 290 | def map(self) -> tuple[int, int] | None: |
nothing calls this directly
no test coverage detected