Remove warnings

This commit is contained in:
2024-12-15 22:32:52 +01:00
parent 1b322c55e5
commit 0600e28f30
2 changed files with 14 additions and 12 deletions

View File

@@ -71,6 +71,7 @@ HEATZY_MODE_VALUE_INV = {v: k for k, v in HEATZY_MODE_VALUE.items()}
DEFAULT_POOLING = 60
class HeatzyUnit(IntEnum):
"""2 units: Control and Selector"""
CONTROL = 1
SELECTOR = 2
@@ -143,7 +144,7 @@ class BasePlugin:
# Get mode
self.get_mode()
def on_command(self, DeviceID, Unit, Command, Level, Color): #pylint: disable=unused-argument
def on_command(self, DeviceID, Unit, Command, Level, Color): #pylint: disable=unused-argument,invalid-name
"""Send a command"""
if Unit == HeatzyUnit.CONTROL:
self.on_off(DeviceID, Command)
@@ -465,15 +466,15 @@ def dump_config_to_log():
if Parameters[x] != "":
Domoticz.Debug( "'" + x + "':'" + str(Parameters[x]) + "'")
Domoticz.Debug("Device count: " + str(len(Devices)))
for DeviceName in Devices:
Device = Devices[DeviceName]
Domoticz.Debug("Device ID: '" + str(Device.DeviceID) + "'")
Domoticz.Debug("--->Unit Count: '" + str(len(Device.Units)) + "'")
for UnitNo in Device.Units:
Unit = Device.Units[UnitNo]
Domoticz.Debug("--->Unit: " + str(UnitNo))
Domoticz.Debug("--->Unit Name: '" + Unit.Name + "'")
Domoticz.Debug("--->Unit nValue: " + str(Unit.nValue))
Domoticz.Debug("--->Unit sValue: '" + Unit.sValue + "'")
Domoticz.Debug("--->Unit LastLevel: " + str(Unit.LastLevel))
for device_name in Devices:
device = Devices[device_name]
Domoticz.Debug("Device ID: '" + str(device.DeviceID) + "'")
Domoticz.Debug("--->Unit Count: '" + str(len(device.Units)) + "'")
for unit_no in device.Units:
unit = device.Units[unit_no]
Domoticz.Debug("--->Unit: " + str(unit_no))
Domoticz.Debug("--->Unit Name: '" + unit.Name + "'")
Domoticz.Debug("--->Unit nValue: " + str(unit.nValue))
Domoticz.Debug("--->Unit sValue: '" + unit.sValue + "'")
Domoticz.Debug("--->Unit LastLevel: " + str(unit.LastLevel))
return