1
0
Fork 0

fix bare prints

This commit is contained in:
Mateusz Konieczny 2025-03-19 19:14:57 +01:00
parent 497e0b25d1
commit add8a753f9

View file

@ -71,11 +71,11 @@ def main():
overview_output_filename = "import_possibilities.html"
overwiev_output_location = config.output_folder() + overview_output_filename
area = graticule_report.global_graticule_coverage()
print(area)
print("area:", area)
checked_keys_per_atp, known_unavailable_listings = get_import_listing_configuration_for_atp_spiders()
generate_overview(checked_keys_per_atp, known_unavailable_listings, overwiev_output_location) # to reset potentially existing one to prevent confusion
for atp_code in checked_keys_per_atp: # note, data is fetched from matches which may be based on a different version of ATP, with different spiders being broken or some missing/not yet present. But looking at files directly seems to be an overkill for such diagnosis tool.
print(atp_code)
print("atp_code:", atp_code)
process_single_dataset(checked_keys_per_atp[atp_code], atp_code, area)
for entry in checked_keys_per_atp[atp_code]:
del entry['not_yet_generated']