Removed deprecated `gpio.sensor` base plugin.

Now all the plugins that used to implement it have been moved to
`SensorPlugin`.
This commit is contained in:
Fabio Manganiello 2023-04-02 23:09:01 +02:00
parent 8852cb8db4
commit 6e5f746dbe
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
2 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
from abc import ABC
from platypush.plugins.sensor import SensorPlugin
class GpioSensorPlugin(SensorPlugin, ABC):
pass
# vim:sw=4:ts=4:et: