add typehint for IRCServer.targmax
This commit is contained in:
parent
7f98ba8310
commit
7dd70c769d
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ class Server(IRCObject.Object):
|
|||
self.channel_types = ["#"]
|
||||
self.case_mapping = "rfc1459"
|
||||
self.statusmsg = [] # type: typing.List[str]
|
||||
self.targmax = {}
|
||||
self.targmax: typing.Dict[str, int] = {}
|
||||
|
||||
self.motd_lines = [] # type: typing.List[str]
|
||||
self.motd_done = False
|
||||
|
|
Loading…
Reference in a new issue