Files
pytchat-fork/pytchat/processors/dummy_processor.py
taizan-hokuto 2474207691 Format code
2020-06-04 23:10:26 +09:00

11 lines
243 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