From 34405b96f63b13fa20a485f5956f6c640eb18c22 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 25 Apr 2018 01:04:51 +0200 Subject: [PATCH] Removed unused mandatory parameters for VideoEvent constructor --- platypush/message/event/video/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platypush/message/event/video/__init__.py b/platypush/message/event/video/__init__.py index d7de27c6..74bee061 100644 --- a/platypush/message/event/video/__init__.py +++ b/platypush/message/event/video/__init__.py @@ -4,8 +4,8 @@ from platypush.message.event import Event class VideoEvent(Event): """ Base class for video events """ - def __init__(self, status, track, *args, **kwargs): - super().__init__(*args, status=status, video=video, **kwargs) + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) class VideoPlayEvent(VideoEvent):