Skip to content
Snippets Groups Projects
Commit 56606d75 authored by webmanue's avatar webmanue
Browse files

improve docstrings and layout (vtu_diff.py)

parent 93c12727
No related branches found
No related tags found
No related merge requests found
Pipeline #124734 passed
......@@ -35,7 +35,7 @@ def point_coordinates(
grid: vtk.vtkUnstructuredGrid, point_id: int
) -> typing.List[float]:
"""
Returns the coordinates of the cell with index `point_id`.
Returns the coordinates of the vertex with index `point_id`.
"""
return list(grid.GetPoint(point_id))
......@@ -259,7 +259,6 @@ class GridComparison(unittest.TestCase):
"""
The cells of the grid have the same cell data.
"""
for result, reference in zip(
sorted(all_cell_data(RESULT_GRID), key=lambda x: x["name"]),
sorted(all_cell_data(REFERENCE_GRID), key=lambda x: x["name"]),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment