diff --git a/chimet-scraper.py b/chimet-scraper.py index 1563229de6fb506443ad4a889cfc63b8d99324fc..81d8325635845efb18ce441cc3efc3ff5222d7f1 100644 --- a/chimet-scraper.py +++ b/chimet-scraper.py @@ -260,7 +260,7 @@ def make_csv(location: Locations, output_loc = output_dir / output_filename combine_csvs(file_name_list, output_loc) - print(f"Made a CSV of {location} from date " + tqdm.tqdm.write(f"Made a CSV of {location} from date " f"{from_time.date()} to {to_time.date()} at {output_loc}") def download_all(): @@ -281,7 +281,7 @@ def main(args): pbar = tqdm.tqdm(Locations, desc=("Iterating over " f"{[x.value for x in Locations]}")) for loc in pbar: - pbar.set_description(f"Donwloading {loc.value} data.") + pbar.set_description(f"Downloading {loc.value} data.") make_csv(loc, **kwargs) if __name__ == "__main__":