mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-13 04:02:29 +00:00
6 lines
178 B
Python
6 lines
178 B
Python
|
from senpy.plugins import SentimentPlugin
|
||
|
from senpy.models import Response
|
||
|
|
||
|
class DummyPlugin(SentimentPlugin):
|
||
|
def analyse(self, *args, **kwargs):
|
||
|
return Response()
|