Removed unused mandatory parameters for VideoEvent constructor

This commit is contained in:
Fabio Manganiello 2018-04-25 01:04:51 +02:00
parent acd06c2193
commit 34405b96f6
1 changed files with 2 additions and 2 deletions

View File

@ -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):