fix self.batches
type hint (src/IRCServer.py)
This commit is contained in:
parent
eb00f331e5
commit
8e03bc66af
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ class Server(IRCObject.Object):
|
||||||
self.capabilities = set([]) # type: typing.Set[str]
|
self.capabilities = set([]) # type: typing.Set[str]
|
||||||
self.requested_capabilities = [] # type: typing.List[str]
|
self.requested_capabilities = [] # type: typing.List[str]
|
||||||
self.server_capabilities = {} # type: typing.Dict[str, str]
|
self.server_capabilities = {} # type: typing.Dict[str, str]
|
||||||
self.batches = {} # type: typing.Dict[str, utils.irc.IRCLine]
|
self.batches = {} # type: typing.Dict[str, utils.irc.IRCParsedLine]
|
||||||
self.cap_started = False
|
self.cap_started = False
|
||||||
|
|
||||||
self.write_buffer = b""
|
self.write_buffer = b""
|
||||||
|
|
Loading…
Reference in a new issue