Skip to content

Commit fb44fe6

Browse files
committed
Fix linting
1 parent e0fde77 commit fb44fe6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/test_cattrs.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ def test_unstructure_numpy_array():
2525
f = Foo(x=np_arr)
2626
f_dict = unstructure(f)
2727

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

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

38-
# We expect that the default unstructure functionality keeps the xarray as is.
39+
# We expect that the default unstructure functionality keeps
40+
# the xarray as is.
3941
# This helps when finally converting the dictionary to MF6 input files.
4042
assert x_arr is f_dict["x"]
4143

0 commit comments

Comments
 (0)