Skip to content

Commit

Permalink
use string for python 3.9 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudio9701 committed Nov 10, 2023
1 parent bd0bff0 commit b0aae31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion urbanpy/download/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
)


def nominatim_osm(query: str, expected_position: int | None = 0) -> GeoDataFrame:
def nominatim_osm(query: str, expected_position: "int | None" = 0) -> GeoDataFrame:
"""
Download OpenStreetMaps data for a specific city.
Expand Down

0 comments on commit b0aae31

Please sign in to comment.