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 9f43b13 commit c0862adCopy full SHA for c0862ad
type-hint-arrow-samples/simple_type_hint_example.py
@@ -2,5 +2,5 @@ def get_number_of_titles(titles: list) -> int:
2
return len(titles)
3
4
5
-game_titles_list = ["Dragon Quest", "Final Fantasy", "Age of Empires"]
6
-print(f"Number of titles: {get_number_of_titles(game_titles_list)}")
+games = ["Dragon Quest", "Final Fantasy", "Age of Empires"]
+print(f"Number of titles: {get_number_of_titles(games)}")
0 commit comments