aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2019-10-08 14:55:36 +0100
committerGravatar jesopo2019-10-08 14:55:46 +0100
commitf8662ad6e12c99265568b9b98b65009a50185ddf (patch)
tree524c9b8334b67541f2c5278ab7fc790a0af6000a /src
parentmove !which to help.py (diff)
signature
fix IRCChannel.topic_setter type hint
Diffstat (limited to 'src')
-rw-r--r--src/IRCChannel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCChannel.py b/src/IRCChannel.py
index 4920be68..0cdfbc32 100644
--- a/src/IRCChannel.py
+++ b/src/IRCChannel.py
@@ -14,7 +14,7 @@ class Channel(IRCObject.Object):
self.server = server
self.bot = bot
self.topic = ""
- self.topic_setter = None # type: typing.Optional[str]
+ self.topic_setter = None # type: typing.Optional[IRCLine.Hostmask]
self.topic_time = 0
self.users = set([]) # type: typing.Set[IRCUser.User]
self.modes = {} # type: typing.Dict[str, typing.Set]