Skip to content

Commit

Permalink
Latest release now documents function
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjstewart committed Jul 20, 2023
1 parent ba8717c commit d074e0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torchgeo/datasets/idtrees.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def plot_las(
points: "np.typing.NDArray[np.int_]" = np.stack(
[las.x, las.y, las.z], axis=0
).transpose((1, 0))
point_cloud = pyvista.PolyData(points) # type: ignore[attr-defined]
point_cloud = pyvista.PolyData(points)

# Some point cloud files have no color->points mapping
if hasattr(las, "red"):
Expand Down

0 comments on commit d074e0a

Please sign in to comment.