conflicting change

This commit is contained in:
Philip 2025-07-17 15:58:26 +02:00
parent 80c86db42b
commit d27a6a794e

View File

@ -13,7 +13,8 @@ def get_population_of_country(df, country):
:raises: KeyError if column is missing :raises: KeyError if column is missing
""" """
cities = df[df["country"] == country] cities = df[df["country"] == country]
return cities["population"].sum() pop = cities["population"].sum()
return pop
def get_cities_beyond_latitude(df, lat, north=True): def get_cities_beyond_latitude(df, lat, north=True):
""" """