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 43a430d commit eb9d01dCopy full SHA for eb9d01d
type_hint_arrow_samples/none_return_type_hint_example.py
@@ -1,6 +1,6 @@
1
-def find_keyword_in_titles(list, keyword) -> None:
+def find_keyword_in_titles(titles: list, keyword: str) -> None:
2
print(f"Titles that contain the keyword {keyword}")
3
- for game_title in list:
+ for game_title in titles:
4
if keyword in game_title:
5
print(f"{game_title}")
6
0 commit comments