From 55e230c3618de743b82bbd305a0462e2dda0e583 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 13 May 2024 02:23:14 +0200 Subject: [PATCH] Removed `wiimote` events associated to removed `wiimote` plugin. --- docs/source/events.rst | 1 - docs/source/platypush/events/wiimote.rst | 6 ----- platypush/message/event/wiimote.py | 32 ------------------------ 3 files changed, 39 deletions(-) delete mode 100644 docs/source/platypush/events/wiimote.rst delete mode 100644 platypush/message/event/wiimote.py diff --git a/docs/source/events.rst b/docs/source/events.rst index 92c5ff3b22..5a174b528c 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 678255b00d..0000000000 --- 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 9229338db4..0000000000 --- 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: -