Skip to content

Commit

Permalink
Allow wifi ssid with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
rquidute committed Oct 4, 2024
1 parent b6b6917 commit 6967f46
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test_collections/matter/test_environment_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ class WiFiConfig(BaseModel):
ssid: str
password: str

def __init__(self, **kwargs):

Check failure on line 39 in test_collections/matter/test_environment_config.py

View workflow job for this annotation

GitHub Actions / Mypy

test_collections/matter/test_environment_config.py#L39

Function is missing a type annotation [no-untyped-def]
super().__init__(**kwargs)
self.ssid = f"\"{self.ssid}\""


class ThreadExternalConfig(BaseModel):
operational_dataset_hex: str
Expand Down

0 comments on commit 6967f46

Please sign in to comment.