def __filter_locations(channel_list: List[Channel], location: str) -> Iterator[Channel]: return filter(lambda current_channel: current_channel.available_in(location), channel_list)