Skip to content

Commit

Permalink
fix pyright error
Browse files Browse the repository at this point in the history
  • Loading branch information
songololo committed Nov 25, 2024
1 parent 726653e commit 1dd6c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysrc/cityseer/metrics/visibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def _buildings_from_osmnx(bounds: tuple[float, float, float, float]) -> gpd.GeoD
# clean up index
bldgs_gdf = bldgs_gdf.reset_index(drop=True)
# return minimal info
return bldgs_gdf[["geometry"]]
return bldgs_gdf[["geometry"]] # type: ignore


def _prepare_path(out_path: str | Path) -> Path:
Expand Down

0 comments on commit 1dd6c34

Please sign in to comment.