diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-03-31 07:24:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-31 07:24:12 -0600 |
commit | f07079b55d1880cd24dfc7425dcbb23ef14b441f (patch) | |
tree | 4931ceaf0c00affebbe935a3f13e8315f3511b68 /numpy/f2py/tests | |
parent | 8336e76a8655494ad9ac641651fb411d34fa844b (diff) | |
download | numpy-f07079b55d1880cd24dfc7425dcbb23ef14b441f.tar.gz |
STY: Indentation fixes.
Diffstat (limited to 'numpy/f2py/tests')
-rw-r--r-- | numpy/f2py/tests/test_abstract_interface.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/numpy/f2py/tests/test_abstract_interface.py b/numpy/f2py/tests/test_abstract_interface.py index d6c6da743..936c1f7bc 100644 --- a/numpy/f2py/tests/test_abstract_interface.py +++ b/numpy/f2py/tests/test_abstract_interface.py @@ -53,13 +53,13 @@ class TestAbstractInterface(util.F2PyTest): f_path = tmp_path / "gh18403_mod.f90" with f_path.open('w') as ff: ff.write(textwrap.dedent("""\ - module test - abstract interface - subroutine foo() - end subroutine - end interface - end module test - """)) + module test + abstract interface + subroutine foo() + end subroutine + end interface + end module test + """)) mod = crackfortran.crackfortran([str(f_path)]) assert len(mod) == 1 assert len(mod[0]['body']) == 1 |