(self)
| 312 | |
| 313 | @property |
| 314 | def pin(self) -> str | None: |
| 315 | if not hasattr(self, "_pin"): |
| 316 | pin_cookie = get_pin_and_cookie_name(self.app) |
| 317 | self._pin, self._pin_cookie = pin_cookie # type: ignore |
| 318 | return self._pin |
| 319 | |
| 320 | @pin.setter |
| 321 | def pin(self, value: str | None) -> None: |
nothing calls this directly
no test coverage detected