No need for `sensor.vl53l1x.transform_entities` to call the parent.

This commit is contained in:
Fabio Manganiello 2023-04-01 23:54:43 +02:00
parent 99572f9731
commit f24d0773d1
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 15 additions and 17 deletions

View File

@ -111,8 +111,7 @@ class SensorDistanceVl53l1xPlugin(SensorPlugin):
@override
def transform_entities(self, entities: Mapping[str, int]) -> List[Device]:
return super().transform_entities( # type: ignore
[
return [
Device(
id='vl53l1x',
name='VL53L1X Distance Sensor',
@ -127,7 +126,6 @@ class SensorDistanceVl53l1xPlugin(SensorPlugin):
],
)
]
)
# vim:sw=4:ts=4:et: