Skip to content

Commit 7a602e4

Browse files
authored
Update dictionary_return_type_example.py
1 parent 1a1015a commit 7a602e4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

type-hint-arrow-samples/dictionary_return_type_example.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
game_stock = {"Dragon Quest": 5, "Final Fantasy": 1, "Age of Empires": 5}
22

3-
43
def get_highest_stock_games(game_stock: dict[str, int]) -> dict[str, int]:
54
max_quantity = max(game_stock.values())
65
return {game: quantity for game, quantity in game_stock.items()

0 commit comments

Comments
 (0)