Nice Work

This commit is contained in:
2026-01-13 19:44:02 +00:00
parent b503b372b4
commit 0718377b27
144 changed files with 15587 additions and 2132 deletions
+6
View File
@@ -65,6 +65,12 @@ class SecretStore:
return token
return None
def clear_api_token(self) -> None:
data = self.load_secrets()
if "api_token" in data:
data.pop("api_token")
self.save_secrets(data)
def clear_wifi_secrets(self) -> None:
data = self.load_secrets()
if "wifi_profiles" in data: