Skip to content

Commit bce8e75

Browse files
committed
Add missing argument
* custom_components/daikin_onecta/coordinator.py:
1 parent 4061cad commit bce8e75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/daikin_onecta/coordinator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async def _async_update_data(self):
6565
def update_settings(self, config_entry: ConfigEntry):
6666
_LOGGER.debug("Daikin coordinator updating settings.")
6767
self.options = config_entry.options
68-
self.update_interval = self.determine_update_interval()
68+
self.update_interval = self.determine_update_interval(self.hass)
6969
_LOGGER.info("Daikin coordinator changed interval to %s", self.update_interval)
7070

7171
def determine_update_interval(self, hass: HomeAssistant):

0 commit comments

Comments
 (0)