Skip to content

Conversation

@MaxNumerique
Copy link
Contributor

No description provided.

@MaxNumerique MaxNumerique requested a review from BotellaA January 30, 2026 09:08
@MaxNumerique MaxNumerique requested a review from BotellaA February 2, 2026 08:11
self.mesh_polyhedra_attribute_vertex_prefix,
)
params = schemas.ColorMap.from_dict(rpc_params)
self.setupColorMap(params.id, params.points, params.minimum, params.maximum)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [mypy] reported by reviewdog 🐶
Argument 2 to "setupColorMap" of "VtkMeshView" has incompatible type "list[float]"; expected "list[list[float]]" [arg-type]

self.mesh_polyhedra_attribute_polyhedron_prefix,
)
params = schemas.ColorMap.from_dict(rpc_params)
self.setupColorMap(params.id, params.points, params.minimum, params.maximum)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [mypy] reported by reviewdog 🐶
Argument 2 to "setupColorMap" of "VtkMeshView" has incompatible type "list[float]"; expected "list[list[float]]" [arg-type]

self.mesh_polygons_attribute_vertex_prefix,
)
params = schemas.ColorMap.from_dict(rpc_params)
self.setupColorMap(params.id, params.points, params.minimum, params.maximum)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [mypy] reported by reviewdog 🐶
Argument 2 to "setupColorMap" of "VtkMeshView" has incompatible type "list[float]"; expected "list[list[float]]" [arg-type]

self.mesh_polygons_attribute_polygon_prefix,
)
params = schemas.ColorMap.from_dict(rpc_params)
self.setupColorMap(params.id, params.points, params.minimum, params.maximum)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [mypy] reported by reviewdog 🐶
Argument 2 to "setupColorMap" of "VtkMeshView" has incompatible type "list[float]"; expected "list[list[float]]" [arg-type]

self.mesh_points_attribute_vertex_prefix,
)
params = schemas.ColorMap.from_dict(rpc_params)
self.setupColorMap(params.id, params.points, params.minimum, params.maximum)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [mypy] reported by reviewdog 🐶
Argument 2 to "setupColorMap" of "VtkMeshView" has incompatible type "list[float]"; expected "list[list[float]]" [arg-type]

self.mesh_edges_attribute_vertex_prefix,
)
params = schemas.ColorMap.from_dict(rpc_params)
self.setupColorMap(params.id, params.points, params.minimum, params.maximum)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [mypy] reported by reviewdog 🐶
Argument 2 to "setupColorMap" of "VtkMeshView" has incompatible type "list[float]"; expected "list[list[float]]" [arg-type]

self.mesh_cells_attribute_vertex_prefix,
)
params = schemas.ColorMap.from_dict(rpc_params)
self.setupColorMap(params.id, params.points, params.minimum, params.maximum)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [mypy] reported by reviewdog 🐶
Argument 2 to "setupColorMap" of "VtkMeshView" has incompatible type "list[float]"; expected "list[list[float]]" [arg-type]

self.mesh_cells_attribute_cell_prefix,
)
params = schemas.ColorMap.from_dict(rpc_params)
self.setupColorMap(params.id, params.points, params.minimum, params.maximum)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [mypy] reported by reviewdog 🐶
Argument 2 to "setupColorMap" of "VtkMeshView" has incompatible type "list[float]"; expected "list[list[float]]" [arg-type]

x_values = points[::4]
x_min = min(x_values)
x_max = max(x_values)
x_range = x_max - x_min
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [mypy] reported by reviewdog 🐶
Unsupported left operand type for - ("list[float]") [operator]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants