Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
deltamarnix committed Dec 12, 2024
1 parent e0fde77 commit fb44fe6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/test_cattrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ def test_unstructure_numpy_array():
f = Foo(x=np_arr)
f_dict = unstructure(f)

# We expect that the default unstructure functionality keeps the numpy array as is.
# We expect that the default unstructure functionality keeps
# the numpy array as is.
# This helps when finally converting the dictionary to MF6 input files.
assert np_arr is f_dict["x"]

Expand All @@ -35,7 +36,8 @@ def test_unstructure_xarray():
f = Bar(x=x_arr)
f_dict = unstructure(f)

# We expect that the default unstructure functionality keeps the xarray as is.
# We expect that the default unstructure functionality keeps
# the xarray as is.
# This helps when finally converting the dictionary to MF6 input files.
assert x_arr is f_dict["x"]

Expand Down

0 comments on commit fb44fe6

Please sign in to comment.