Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarans committed Nov 18, 2024
1 parent e941129 commit a04ebf4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/hdx/scraper/ophi/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

create_country_datasets = False


def main(
save: bool = False,
use_saved: bool = False,
Expand Down Expand Up @@ -103,10 +104,12 @@ def update_dataset(dataset):
countryiso3,
standardised_country,
) in standardised_countries.items():
countryname = Country.get_country_name_from_iso3(countryiso3)
standardised_country_trend = standardised_countries_trend.get(
countryname = Country.get_country_name_from_iso3(
countryiso3
)
standardised_country_trend = (
standardised_countries_trend.get(countryiso3)
)
dataset = dataset_generator.generate_dataset(
folder,
standardised_country,
Expand Down

0 comments on commit a04ebf4

Please sign in to comment.