Files
pytchat-fork/pytchat/processors/dummy_processor.py
2019-12-30 11:02:29 +09:00

9 lines
241 B
Python

from .chat_processor import ChatProcessor
class DummyProcessor(ChatProcessor):
'''
Dummy processor just returns received chat_components directly.
'''
def process(self, chat_components: list):
return chat_components