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 a67c74cd..8bcb3655 100644
--- a/src/IRCChannel.py
+++ b/src/IRCChannel.py
@@ -164,7 +164,7 @@ class Channels(object):
self._events = events
self._channels = {} # type: typing.Dict[str, Channel]
- def __iter__(self) -> Iterable[Channel]:
+ def __iter__(self) -> typing.Iterable[Channel]:
return (channel for channel in self._channels.values())
def __contains__(self, name: str) -> bool:
return self.contains(name)