Skip to content

Commit d756a53

Browse files
pre-commit-ci[bot]henryiii
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6afe07f commit d756a53

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
from ._hello import hello

projects/hello-f2py/hello_f2py/_hello.pyf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
! -*- f90 -*-
22
! Note: the context of this file is case sensitive.
33

4-
python module _hello ! in
4+
python module _hello ! in
55
interface ! in :_hello
66
subroutine hello(a) ! in :_hello:hello.f90
77
character*(*) intent(in) :: a
88
end subroutine hello
9-
end interface
9+
end interface
1010
end python module _hello
1111

1212
! This file was auto-generated with f2py (version:1.24.2).

projects/hello-f2py/tests/test_hello_f2py.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33

44
def test_hello(capfd):
5-
hello('World')
5+
hello("World")
66
captured = capfd.readouterr()
7-
assert captured.out == 'Hello, World!\n'
7+
assert captured.out == "Hello, World!\n"

0 commit comments

Comments
 (0)