Skip to content

Commit

Permalink
further naming changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AmyOctoCat committed Jun 26, 2024
1 parent 93caff0 commit e4c2fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/00_final/precipitation_climatology.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def get_country_annual_average(precipitation_data, countries):
.countries_110
.mask(annual_average_precipitation))

with open("data.txt", "w", encoding="utf-8") as datafile:
with open("annual_average_precipitation_by_country.txt", "w", encoding="utf-8") as datafile:
for country_name, country_code in countries.items():
country_annual_average_precipitation = annual_average_precipitation.where(
country_mask.cf == country_code)
Expand Down

0 comments on commit e4c2fd5

Please sign in to comment.