Skip to content

Commit

Permalink
v2024.6.1 - fix #57
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenterheerdt committed Jun 10, 2024
1 parent 0b1ca09 commit 9072d78
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
Binary file modified custom_components/daily/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified custom_components/daily/__pycache__/const.cpython-312.pyc
Binary file not shown.
Binary file modified custom_components/daily/__pycache__/sensor.cpython-312.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion custom_components/daily/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
DOMAIN = "daily"
NAME = "Daily Sensor"
DOMAIN_DATA = f"{DOMAIN}_data"
VERSION = "2024.6.0"
VERSION = "2024.6.1"
COORDINATOR = "coordinator"
ISSUE_URL = "https://github.com/jeroenterheerdt/HADailySensor/issues"

Expand Down
4 changes: 2 additions & 2 deletions custom_components/daily/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def convert_to_float(float_value):
return float(float_value)
except ValueError:
_LOGGER.error(
"unable to convert {} to float. Please check the source sensor ({}) is available.".format(
float_value, self.coordinator.input_sensor
"unable to convert {} to float. Please check the source sensor is available.".format(
float_value
)
)
raise ValueError
2 changes: 1 addition & 1 deletion custom_components/daily/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"issue_tracker": "https://github.com/jeroenterheerdt/HADailySensor/issues",
"requirements": [],
"ssdp": [],
"version": "2024.6.0",
"version": "2024.6.1",
"zeroconf": []
}

0 comments on commit 9072d78

Please sign in to comment.