Skip to content

Commit a03a63f

Browse files
test: add type hints
1 parent c2e4805 commit a03a63f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_template.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from python_package_template import hello
22

33

4-
def test_hello():
4+
def test_hello() -> None:
55
assert hello() == "Hello, World!"
66

77

8-
def test_hello_world():
8+
def test_hello_world() -> None:
99
assert hello("world") == "Hello, world!"

0 commit comments

Comments
 (0)