Default hass_config to contain an empty config (#88515)

* Default hass_config to {}

* Correct type hint
This commit is contained in:
Jan Bouwhuis
2023-02-21 08:48:44 +01:00
committed by GitHub
parent 60ca3b3223
commit ebb450c946
3 changed files with 5 additions and 5 deletions

View File

@@ -109,7 +109,7 @@ _TEST_FIXTURES: dict[str, list[str] | str] = {
"hass_admin_user": "MockUser",
"hass_client": "ClientSessionGenerator",
"hass_client_no_auth": "ClientSessionGenerator",
"hass_config": "ConfigType | None",
"hass_config": "ConfigType",
"hass_config_yaml": "str | None",
"hass_config_yaml_files": "dict[str, str] | None",
"hass_owner_user": "MockUser",