Skip to content

Commit

Permalink
Fix stupid copy paste mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahvdAa committed Oct 29, 2023
1 parent 6c332f8 commit 781a4e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geobox.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
continue

country = '' if country is None else country
region = '' if region is None else country
city = '' if city is None else country
region = '' if region is None else region
city = '' if city is None else city

feed += entry['prefix'] + ',' + country + ',' + region + ',' + city + ',\n'
i += 1
Expand Down

0 comments on commit 781a4e9

Please sign in to comment.