Removed `wiimote` events associated to removed `wiimote` plugin.

This commit is contained in:
Fabio Manganiello 2024-05-13 02:23:14 +02:00
parent ad4d929c28
commit 55e230c361
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
3 changed files with 0 additions and 39 deletions

View File

@ -74,7 +74,6 @@ Events
platypush/events/web.rst
platypush/events/web.widget.rst
platypush/events/websocket.rst
platypush/events/wiimote.rst
platypush/events/xmpp.rst
platypush/events/zeroborg.rst
platypush/events/zeroconf.rst

View File

@ -1,6 +0,0 @@
``wiimote``
===================================
.. automodule:: platypush.message.event.wiimote
:members:

View File

@ -1,32 +0,0 @@
from platypush.message.event import Event
class WiimoteEvent(Event):
"""
Event triggered upon Wiimote event
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class WiimoteConnectionEvent(WiimoteEvent):
"""
Event triggered upon Wiimote connection
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class WiimoteDisconnectionEvent(WiimoteEvent):
"""
Event triggered upon Wiimote disconnection
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# vim:sw=4:ts=4:et: