bump IRCBuffer MAX_LINES to 1024
This commit is contained in:
parent
d2d774a644
commit
5fb3057814
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
import collections, dataclasses, datetime, re, typing, uuid
|
||||
from src import IRCBot, IRCServer, utils
|
||||
|
||||
MAX_LINES = 64
|
||||
MAX_LINES = 2**10
|
||||
|
||||
@dataclasses.dataclass
|
||||
class BufferLine(object):
|
||||
|
|
Loading…
Reference in a new issue