disable_logging=True for ZwaveNodeGroupEvent

This commit is contained in:
Fabio Manganiello 2021-03-12 20:29:04 +01:00
parent cef310ffd7
commit 347a4d2555
1 changed files with 1 additions and 0 deletions

View File

@ -96,6 +96,7 @@ class ZwaveNodeGroupEvent(ZwaveNodeEvent):
Triggered when a node is associated/de-associated to a group.
"""
def __init__(self, group_index: Optional[int] = None, *args, **kwargs):
kwargs['disable_logging'] = True
super().__init__(*args, group_index=group_index, **kwargs)