File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments