Skip to content

Commit 32eb171

Browse files
authored
Update none_return_type_hint_example.py
1 parent 41d957a commit 32eb171

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

type_hint_arrow_samples/none_return_type_hint_example.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ def find_keyword_in_titles(list, keyword) -> None:
44
if keyword in game_title:
55
print(f"{game_title}")
66

7+
78
game_titles_list = ["Dragon Quest", "Final Fantasy", "Age of Empires"]
8-
find_keyword_in_titles(game_titles_list, "Final")
9+
find_keyword_in_titles(game_titles_list, "Final")

0 commit comments

Comments
 (0)