Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: revert temperature conversion fix #222

Merged
merged 1 commit into from
Nov 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions custom_components/optimal_humidity/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@

from homeassistant import util

from homeassistant.util.temperature import fahrenheit_to_celsius

from homeassistant.util.unit_system import METRIC_SYSTEM

from homeassistant.components.sensor import (
Expand Down Expand Up @@ -318,7 +316,7 @@ def _update_temp_sensor(state):
return None

if unit == TEMP_FAHRENHEIT:
return fahrenheit_to_celsius(temp)
return util.temperature.fahrenheit_to_celsius(temp)
if unit == TEMP_CELSIUS:
return temp
_LOGGER.warning(
Expand Down
Loading