Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Fixed syntax error
Browse files Browse the repository at this point in the history
    * custom_components/daikin_residential_altherma/water_heater.py:
  • Loading branch information
jwillemsen committed Nov 27, 2023
1 parent 122f28c commit fbe1b7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def temperature_unit(self):
@property
def current_temperature(self):
"""Return tank temperature."""
ret + None
ret = None
hwtd = self.hotwatertank_data
# Some Altherma versions don't provide a current temperature, there is no sensoryData
sensoryData = hwtd.get("sensoryData")
Expand Down

0 comments on commit fbe1b7b

Please sign in to comment.