From 97d4a9680dfbd04c91c971eb9a580773dac8176e Mon Sep 17 00:00:00 2001 From: Luca Carniato Date: Mon, 2 Sep 2024 16:52:29 +0200 Subject: [PATCH] Formatting --- meshkernel/py_structures.py | 2 +- tests/test_mesh2d_basics.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meshkernel/py_structures.py b/meshkernel/py_structures.py index d4d6c183..e473dac4 100644 --- a/meshkernel/py_structures.py +++ b/meshkernel/py_structures.py @@ -122,7 +122,7 @@ class Mesh2d: class Property(IntEnum): """Different properties on a 2D mesh.""" - ORTHOGONALITY = 0, + ORTHOGONALITY = (0,) EDGE_LENGTHS = 1 def __init__( diff --git a/tests/test_mesh2d_basics.py b/tests/test_mesh2d_basics.py index 1f8b3dcc..d4d2e8cf 100644 --- a/tests/test_mesh2d_basics.py +++ b/tests/test_mesh2d_basics.py @@ -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)