Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacarniato committed Sep 2, 2024
1 parent d57e40b commit 97d4a96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meshkernel/py_structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class Mesh2d:
class Property(IntEnum):
"""Different properties on a 2D mesh."""

ORTHOGONALITY = 0,
ORTHOGONALITY = (0,)
EDGE_LENGTHS = 1

def __init__(
Expand Down
2 changes: 1 addition & 1 deletion tests/test_mesh2d_basics.py
Original file line number Diff line number Diff line change
Expand Up @@ -2385,7 +2385,7 @@ def test_mesh2d_get_property(
expected_values: ndarray,
):
"""Test mesh2d_get_property,
getting the mesh2d orthogonality values
getting the mesh2d property values
"""
mk = meshkernel_with_mesh2d(3, 3)

Expand Down

0 comments on commit 97d4a96

Please sign in to comment.