diff options
| author | 2018-11-11 12:43:39 +0000 | |
|---|---|---|
| committer | 2018-11-11 12:43:39 +0000 | |
| commit | 245c4599dd6b22cbc24ea7e5511bf04ad90d72be (patch) | |
| tree | 3cc77dbcf955c333ea9e287523e8c4015461d50b /src | |
| parent | Forgot to import `EventManager` in src/IRCChannel.py (diff) | |
| signature | ||
Typo in src/IRCChannel.py, 'Iterable' -> 'typing.Iterable'
Diffstat (limited to 'src')
| -rw-r--r-- | src/IRCChannel.py | 2 |
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) |
