fix self.batches type hint (src/IRCServer.py)

This commit is contained in:
jesopo 2019-02-10 14:20:40 +00:00
parent eb00f331e5
commit 8e03bc66af

View file

@ -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""