IRCServer.statusmsg type hint

This commit is contained in:
jesopo 2019-06-08 12:10:14 +01:00
parent 30b8684eb5
commit e28a8d91ab

View file

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