mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 17:27:10 +00:00
Don't use deprecated encoding to json.loads (#28509)
Will be removed in 3.9, ignored in earlier supported versions.
This commit is contained in:
parent
734e982822
commit
9b038bd10d
@ -92,7 +92,7 @@ class HomeTemplate(Home):
|
||||
|
||||
def init_home(self, json_path=HOME_JSON):
|
||||
"""Init template with json."""
|
||||
self.init_json_state = json.loads(load_fixture(HOME_JSON), encoding="UTF-8")
|
||||
self.init_json_state = json.loads(load_fixture(HOME_JSON))
|
||||
self.update_home(json_state=self.init_json_state, clearConfig=True)
|
||||
return self
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user