Fix invalid configuration_url in Netatmo (#82372)

This commit is contained in:
Michael 2022-11-19 15:02:07 +01:00 committed by GitHub
parent df959c364c
commit 93897016f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ class NetatmoBase(Entity):
self._device_name: str = ""
self._id: str = ""
self._model: str = ""
self._config_url: str = ""
self._config_url: str | None = None
self._attr_name = None
self._attr_unique_id = None
self._attr_extra_state_attributes = {}