We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4cf635 commit d9f4d3cCopy full SHA for d9f4d3c
1 file changed
plugwise_usb/nodes/circle.py
@@ -971,8 +971,6 @@ async def node_info_update(
971
972
async def _node_info_load_from_cache(self) -> bool:
973
"""Load node info settings from cache."""
974
- result = await super()._node_info_load_from_cache()
975
- _LOGGER.debug("circle._node_info_load_from_cache | result=%s", result)
976
if (
977
current_log_address := self._get_cache(CACHE_CURRENT_LOG_ADDRESS)
978
) is not None:
@@ -981,7 +979,7 @@ async def _node_info_load_from_cache(self) -> bool:
981
979
"circle._node_info_load_from_cache | current_log_address=%s",
982
980
self._current_log_address
983
)
984
- return result
+ return True
985
986
_LOGGER.debug("circle._node_info_load_from_cache | current_log_address=None")
987
return False
0 commit comments