diff --git a/docs/source/events.rst b/docs/source/events.rst index 92c5ff3b2..5a174b528 100644 --- a/docs/source/events.rst +++ b/docs/source/events.rst @@ -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 diff --git a/docs/source/platypush/events/wiimote.rst b/docs/source/platypush/events/wiimote.rst deleted file mode 100644 index 678255b00..000000000 --- a/docs/source/platypush/events/wiimote.rst +++ /dev/null @@ -1,6 +0,0 @@ -``wiimote`` -=================================== - -.. automodule:: platypush.message.event.wiimote - :members: - diff --git a/platypush/message/event/wiimote.py b/platypush/message/event/wiimote.py deleted file mode 100644 index 9229338db..000000000 --- a/platypush/message/event/wiimote.py +++ /dev/null @@ -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: -