mirror of
https://codeberg.org/matkoniecz/list_how_openstreetmap_can_be_improved_with_alltheplaces_data.git
synced 2025-05-13 05:03:09 +02:00
fix bare prints
This commit is contained in:
parent
497e0b25d1
commit
add8a753f9
1 changed files with 2 additions and 2 deletions
|
@ -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']
|
||||
|
|
Loading…
Add table
Reference in a new issue