From c4ff40e5fd79ee28199c80824a8efa5bac53905e Mon Sep 17 00:00:00 2001 From: Elad Bar Date: Sun, 30 Oct 2022 16:25:11 +0200 Subject: [PATCH] removed unused variable --- custom_components/edgeos/component/api/storage_api.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/custom_components/edgeos/component/api/storage_api.py b/custom_components/edgeos/component/api/storage_api.py index 9be30d1..a36f11c 100644 --- a/custom_components/edgeos/component/api/storage_api.py +++ b/custom_components/edgeos/component/api/storage_api.py @@ -20,7 +20,6 @@ class StorageAPI(BaseAPI): _stores: dict[str, Store] | None - _views: dict[str, EdgeOSBaseView] | None _config_data: ConfigData | None _data: dict @@ -34,7 +33,6 @@ def __init__(self, self._config_data = None self._stores = None - self._views = None self._data = {} @property