forked from platypush/platypush
Removed unused mandatory parameters for VideoEvent constructor
This commit is contained in:
parent
acd06c2193
commit
34405b96f6
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue