Skip to content

Allow wifi ssid with spaces #544

Allow wifi ssid with spaces

Allow wifi ssid with spaces #544

GitHub Actions / Black failed Oct 3, 2024 in 0s

2 errors

Black found 2 errors

Annotations

Check failure on line 63 in /home/runner/work/certification-tool-backend/certification-tool-backend/test_collections/matter/sdk_tests/support/sdk_container.py

See this annotation in the file changed.

@github-actions github-actions / Black

/home/runner/work/certification-tool-backend/certification-tool-backend/test_collections/matter/sdk_tests/support/sdk_container.py#L52-L63

 )
 DOCKER_PYTHON_TESTING_PATH = "/root/python_testing"
 
 MAPPED_DATA_MODEL_VOLUME = "mapped_data_model_volume"
 DOCKER_DATA_MODEL_PATH = DOCKER_PYTHON_TESTING_PATH + "/data_model"
-
 
 
 # RPC Client Running on SDK Container
 LOCAL_RPC_PYTHON_TESTING_PATH = Path(
     LOCAL_TEST_COLLECTIONS_PATH + "/sdk_tests/support/python_testing/models/rpc_client/"

Check failure on line 47 in /home/runner/work/certification-tool-backend/certification-tool-backend/test_collections/matter/test_environment_config.py

See this annotation in the file changed.

@github-actions github-actions / Black

/home/runner/work/certification-tool-backend/certification-tool-backend/test_collections/matter/test_environment_config.py#L36-L47

     ssid: str
     password: str
 
     def __init__(self, **kwargs):
         super().__init__(**kwargs)
-        self.ssid = f"\"{self.ssid}\""
+        self.ssid = f'"{self.ssid}"'
 
 
 class ThreadExternalConfig(BaseModel):
     operational_dataset_hex: str