Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
schnellerhase committed Jul 30, 2024
1 parent b2f82fc commit 59a6661
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions python/dolfinx/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 59a6661

Please sign in to comment.