forked from platypush/platypush
disable_logging=True for ZwaveNodeGroupEvent
This commit is contained in:
parent
cef310ffd7
commit
347a4d2555
1 changed files with 1 additions and 0 deletions
|
@ -96,6 +96,7 @@ class ZwaveNodeGroupEvent(ZwaveNodeEvent):
|
||||||
Triggered when a node is associated/de-associated to a group.
|
Triggered when a node is associated/de-associated to a group.
|
||||||
"""
|
"""
|
||||||
def __init__(self, group_index: Optional[int] = None, *args, **kwargs):
|
def __init__(self, group_index: Optional[int] = None, *args, **kwargs):
|
||||||
|
kwargs['disable_logging'] = True
|
||||||
super().__init__(*args, group_index=group_index, **kwargs)
|
super().__init__(*args, group_index=group_index, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue