aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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]