conflicting change
This commit is contained in:
parent
80c86db42b
commit
d27a6a794e
@ -13,7 +13,8 @@ def get_population_of_country(df, country):
|
||||
:raises: KeyError if column is missing
|
||||
"""
|
||||
cities = df[df["country"] == country]
|
||||
return cities["population"].sum()
|
||||
pop = cities["population"].sum()
|
||||
return pop
|
||||
|
||||
def get_cities_beyond_latitude(df, lat, north=True):
|
||||
"""
|
||||
|
||||
Loading…
Reference in New Issue
Block a user