diff --git a/platypush/message/event/entities.py b/platypush/message/event/entities.py index fe3342df..58cc0072 100644 --- a/platypush/message/event/entities.py +++ b/platypush/message/event/entities.py @@ -1,4 +1,3 @@ -import logging from typing import Union from platypush.entities import Entity @@ -18,9 +17,6 @@ class EntityUpdateEvent(EntityEvent): a sensor, a media player etc.) updates its state. """ - def __init__(self, *args, logging_level=logging.DEBUG, **kwargs): - super().__init__(*args, logging_level=logging_level, **kwargs) - class EntityDeleteEvent(EntityEvent): """