Skip to content

Commit 00761fb

Browse files
committed
Remove typing
1 parent ada46e6 commit 00761fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise/smile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ async def set_switch_state(
399399
return await self._set_groupswitch_member_state(members, state, switch)
400400

401401
locator = f'appliance[@id="{appl_id}"]/{switch.actuator}/{switch.func_type}'
402-
found: list[etree] = self._domain_objects.findall(locator)
402+
found = self._domain_objects.findall(locator)
403403
for item in found:
404404
# multiple types of e.g. toggle_functionality present
405405
if (sw_type := item.find("type")) is not None:

0 commit comments

Comments
 (0)