Add missing ":" in src/IRCChannel.py

This commit is contained in:
jesopo 2018-11-11 12:41:31 +00:00
parent c84205ed9b
commit 44393a3170

View file

@ -165,7 +165,7 @@ class Channels(object):
def __iter__(self) -> Iterable[Channel]:
return (channel for channel in self._channels.values())
def __contains__(self, name: str) -> bool
def __contains__(self, name: str) -> bool:
return self.contains(name)
def _get_id(self, channel_name: str) -> int: