Files
pytchat-fork/pytchat/tool/block.py
2020-02-02 00:38:22 +09:00

9 lines
285 B
Python

class Block:
def __init__(self, pos=0, first=0, last=0,
continuation='', chat_data=[]):
self.pos = pos
self.first = first
self.last = last
self.temp_last = 0
self.continuation = continuation
self.chat_data = chat_data