Skip to content

Commit

Permalink
fix: change paths printing in doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
RaczeQ committed Dec 28, 2023
1 parent a8c10b2 commit a9ab0e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quackosm/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def convert_pbf_to_gpq(
>>> import quackosm as qosm
>>> gpq_path = qosm.convert_pbf_to_gpq(monaco_pbf_path)
>>> gpq_path.as_posix()
PosixPath('files/monaco_nofilter_noclip_compact.geoparquet')
'files/monaco_nofilter_noclip_compact.geoparquet'
Inspect the file with duckdb
>>> import duckdb
Expand Down Expand Up @@ -111,7 +111,7 @@ def convert_pbf_to_gpq(
... tags_filter={"building": True, "amenity": True, "highway": True}
... )
>>> gpq_path.as_posix()
PosixPath('files/monaco_6593ca69098459d039054bc5fe0a87c56681e29a5f59d38ce3485c03cb0e9374_noclip_exploded.geoparquet')
'files/monaco_6593ca69098459d039054bc5fe0a87c56681e29a5f59d38ce3485c03cb0e9374_noclip_exploded.geoparquet'
Inspect the file with duckdb
>>> import duckdb
Expand Down Expand Up @@ -164,7 +164,7 @@ def convert_pbf_to_gpq(
... )
... )
>>> gpq_path.as_posix()
PosixPath('files/maldives_nofilter_35532d32333a47a057265be0d7903ce27f6aa6ca3df31fe45f4ce67e4dbb3fb5_compact.geoparquet')
'files/maldives_nofilter_35532d32333a47a057265be0d7903ce27f6aa6ca3df31fe45f4ce67e4dbb3fb5_compact.geoparquet'
Inspect the file with duckdb
>>> import duckdb
Expand Down

0 comments on commit a9ab0e7

Please sign in to comment.