(self, key: str, val: Optional[str])
| 2255 | @API.perm('w') |
| 2256 | @API.expose |
| 2257 | def set_localized_store(self, key: str, val: Optional[str]) -> None: |
| 2258 | return self._set_localized(key, val, self.set_store) |
| 2259 | |
| 2260 | def self_test(self) -> Optional[str]: |
| 2261 | """ |
nothing calls this directly
no test coverage detected