Skip to content

Commit

Permalink
Move import to logical location
Browse files Browse the repository at this point in the history
  • Loading branch information
nikconwell committed Feb 3, 2024
1 parent 89c9024 commit 0d3483c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions python/latitude/convert.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/home/nik/github/try/python/latitude/bin/python

# Library to convert addresses
# pip install geopy
from geopy.geocoders import Nominatim


import argparse
import re

Expand All @@ -22,8 +27,6 @@
address+= ", natick, ma"
print(f"(Added in town) >>>{address}<<<")

# Library to convert addresses
from geopy.geocoders import Nominatim
loc = Nominatim(user_agent="Geopy Library")

# Convert address entered
Expand Down

0 comments on commit 0d3483c

Please sign in to comment.