(self, ssid: Optional[str])
| 189 | return None |
| 190 | |
| 191 | def _write_last_ssid(self, ssid: Optional[str]): |
| 192 | try: |
| 193 | with open(self.last_ssid_file, 'w', encoding='utf-8') as handle: |
| 194 | handle.write((ssid or self.default_ssid) + '\n') |
| 195 | except IOError: |
| 196 | pass |