From 59a66619a199d0ee1076b10d50beaf68ebf16586 Mon Sep 17 00:00:00 2001 From: schnellerhase <56360279+schnellerhase@users.noreply.github.com> Date: Tue, 30 Jul 2024 18:32:45 +0200 Subject: [PATCH] Fix typo --- python/dolfinx/mesh.py | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/python/dolfinx/mesh.py b/python/dolfinx/mesh.py index adcabd7a7fa..4a2dadf9b93 100644 --- a/python/dolfinx/mesh.py +++ b/python/dolfinx/mesh.py @@ -28,14 +28,7 @@ create_cell_partitioner, exterior_facet_indices, to_string, - to_type, -) -from dolfinx.cpp.refinement import RefinementOption -from dolfinx.fem import CoordinateElement as _CoordinateElement -from dolfinx.fem import coordinate_element as _coordinate_element - -__all__ = [ - "meshtags_from_entities", + to_type "locate_entities", "locate_entities_boundary", "refine", @@ -316,7 +309,7 @@ def refine( redistribute: bool = True, ghost_mode: GhostMode = GhostMode.shared_facet, option: RefinementOption = RefinementOption.none, -) -> tuple[Mesh, npt.NDArray[np.int32], npt.NDArra[np.int8]]: +) -> tuple[Mesh, npt.NDArray[np.int32], npt.NDArray[np.int8]]: """Refine a mesh. Args: