Skip to content

Commit c4834e2

Browse files
test: add type hints
1 parent 37935c6 commit c4834e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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_cli_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)