From 245c4599dd6b22cbc24ea7e5511bf04ad90d72be Mon Sep 17 00:00:00 2001 From: jesopo Date: Sun, 11 Nov 2018 12:43:39 +0000 Subject: [PATCH] Typo in src/IRCChannel.py, 'Iterable' -> 'typing.Iterable' --- src/IRCChannel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)