Skip to content

Commit

Permalink
Update config_flow.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MapoDan authored Jan 6, 2021
1 parent 61d53bf commit b7f7038
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions custom_components/programmable_thermostat/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ async def async_step_final(self, user_input={}):
if user_input is not None and user_input != {}:
if self.are_third_step_data_valid(user_input):
self._data.update(user_input)
self._data[CONF_RELATED_CLIMATE] = self.string_to_list(self._data[CONF_RELATED_CLIMATE])
self._data[CONF_MIN_CYCLE_DURATION] = self.string_to_timedelta(self._data[CONF_MIN_CYCLE_DURATION])
final_data = {}
for key in self._data.keys():
Expand Down

0 comments on commit b7f7038

Please sign in to comment.