Fix missing whitespace around arithmetic operator (#26908)
This commit is contained in:
parent
626b61b58f
commit
cc611615aa
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ class XiaomiDevice(Entity):
|
|||
max_volt = 3300
|
||||
min_volt = 2800
|
||||
voltage = data[voltage_key]
|
||||
self._device_state_attributes[ATTR_VOLTAGE] = round(voltage/1000.0, 2)
|
||||
self._device_state_attributes[ATTR_VOLTAGE] = round(voltage / 1000.0, 2)
|
||||
voltage = min(voltage, max_volt)
|
||||
voltage = max(voltage, min_volt)
|
||||
percent = ((voltage - min_volt) / (max_volt - min_volt)) * 100
|
||||
|
|
Loading…
Add table
Reference in a new issue