aboutsummaryrefslogtreecommitdiff
path: root/src/IRCChannel.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-11 12:43:39 +0000
committerGravatar jesopo2018-11-11 12:43:39 +0000
commit245c4599dd6b22cbc24ea7e5511bf04ad90d72be (patch)
tree3cc77dbcf955c333ea9e287523e8c4015461d50b /src/IRCChannel.py
parentForgot to import `EventManager` in src/IRCChannel.py (diff)
signature
Typo in src/IRCChannel.py, 'Iterable' -> 'typing.Iterable'
Diffstat (limited to 'src/IRCChannel.py')
-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)