6 lines
188 B
Python
6 lines
188 B
Python
from regiojet_search.models import City
|
|
|
|
|
|
def lookup_city(city_name: str, cities: list[City]) -> City:
|
|
return next(filter(lambda city: city.name.lower() == city_name.lower(), cities))
|