Skip to content

Commit f867d4b

Browse files
committed
Fix select entity bug
1 parent 3430e3d commit f867d4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/dmx/entity/select.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def link_switching_entities(self, entities: list[DmxNumberEntity]) -> None:
6262

6363
self.__set_availability(True)
6464

65-
def update_value(self, value: int) -> None:
65+
def update_value(self, dmx_index: int, value: int) -> None:
6666
# TODO maybe update self._attr_attribution from source ArtNet node?
6767
capability = [
6868
capability for capability in self.capability_types.values()

0 commit comments

Comments
 (0)