add typehint for IRCServer.targmax

This commit is contained in:
jesopo 2020-02-17 15:20:24 +00:00
parent 7f98ba8310
commit 7dd70c769d

View file

@ -62,7 +62,7 @@ class Server(IRCObject.Object):
self.channel_types = ["#"] self.channel_types = ["#"]
self.case_mapping = "rfc1459" self.case_mapping = "rfc1459"
self.statusmsg = [] # type: typing.List[str] self.statusmsg = [] # type: typing.List[str]
self.targmax = {} self.targmax: typing.Dict[str, int] = {}
self.motd_lines = [] # type: typing.List[str] self.motd_lines = [] # type: typing.List[str]
self.motd_done = False self.motd_done = False