Run the platform-specific connect command. Subclasses implement this.
(
self, ssid: str, password: str
)
| 43 | |
| 44 | @abstractmethod |
| 45 | def _run_connect( |
| 46 | self, ssid: str, password: str |
| 47 | ) -> subprocess.CompletedProcess[str]: |
| 48 | """Run the platform-specific connect command. Subclasses implement this.""" |
| 49 | |
| 50 | @abstractmethod |
| 51 | def _run_restore(self, ssid: str) -> None: |