Skip to content

Commit

Permalink
Change price cap bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-r committed Apr 10, 2024
1 parent 9ccadbb commit fe83b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/ohme/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ class PriceCapNumber(NumberEntity):
_attr_device_class = NumberDeviceClass.MONETARY
_attr_mode = NumberMode.BOX
_attr_native_step = 0.1
_attr_native_min_value = 1
_attr_native_min_value = -100
_attr_native_max_value = 100

def __init__(self, coordinator, hass: HomeAssistant, client):
Expand Down

0 comments on commit fe83b17

Please sign in to comment.