Don't shadow python builtins

This commit is contained in:
Sebastian Lohff 2021-01-10 03:17:10 +01:00
parent 53821074d6
commit 36e033e0f7
1 changed files with 3 additions and 3 deletions

View File

@ -17,10 +17,10 @@ class Sensor(object):
_mqtt_callbacks = {}
HAS_SENSOR_DATA = True
def __init__(self, id, name, type, pin, description, **sensor_conf):
self.id = id
def __init__(self, sensor_id, name, sensor_type, pin, description, **sensor_conf):
self.id = sensor_id
self.name = name
self.type = type
self.type = sensor_type
self.pin = pin
self.description = description