Skip to content

Commit 15d9df9

Browse files
committed
fix tests
1 parent 9af63b0 commit 15d9df9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

geos-mesh/src/geos/mesh/vtk/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def createVertices( cellPtsCoord: list[ npt.NDArray[ np.float64 ] ],
175175
pointsLocator.InsertUniquePoint( pt.tolist(), ptId ) # type: ignore[arg-type]
176176
else:
177177
pointsLocator.InsertPointWithoutChecking( pt.tolist(), ptId, 1 ) # type: ignore[arg-type]
178-
cellVertexMap += [ ptId ]
178+
cellVertexMap += [ ptId.get() ]
179179
cellVertexMapAll += [ tuple( cellVertexMap ) ]
180180
return points, cellVertexMapAll
181181

0 commit comments

Comments
 (0)