Return a storage context for SSID without changing the active network.
(self, ssid: Optional[str])
| 47 | return self._build_context(self.active_ssid, self.active_slug or '') |
| 48 | |
| 49 | def get_context_snapshot(self, ssid: Optional[str]) -> Dict[str, str]: |
| 50 | """Return a storage context for SSID without changing the active network.""" |
| 51 | slug = self._slugify(ssid) |
| 52 | normalized_ssid = ssid.strip() if ssid else None |
| 53 | return self._build_context(normalized_ssid, slug) |
| 54 | |
| 55 | # ------------------------------------------------------------------ |
| 56 | # Internal helpers |
no test coverage detected