We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cce0b7 commit 7fa9ff3Copy full SHA for 7fa9ff3
type-hint-arrow-samples/none_return_type_hint_example.py
@@ -5,5 +5,5 @@ def find_keyword_in_titles(titles: list, keyword: str) -> None:
5
print(f"{game_title}")
6
7
8
-game_titles_list = ["Dragon Quest", "Final Fantasy", "Age of Empires"]
9
-find_keyword_in_titles(game_titles_list, "Final")
+games = ["Dragon Quest", "Final Fantasy", "Age of Empires"]
+find_keyword_in_titles(games, "Final")
0 commit comments