We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46eff7e commit 434653aCopy full SHA for 434653a
zha/application/platforms/websocket_api.py
@@ -61,9 +61,9 @@ async def execute_platform_entity_command(
61
arg_spec = inspect.getfullargspec(action)
62
if arg_spec.varkw:
63
if inspect.iscoroutinefunction(action):
64
- await action(**command.model_dump(exclude_none=True))
+ await action(**command.model_dump())
65
else:
66
- action(**command.model_dump(exclude_none=True))
+ action(**command.model_dump())
67
elif inspect.iscoroutinefunction(action):
68
await action()
69
0 commit comments