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 57db4f6 commit e22a680Copy full SHA for e22a680
patterns/structural/mvc.py
@@ -73,7 +73,7 @@ def item_not_found(self, item_type: str, item_name: str) -> None:
73
74
class ConsoleView(View):
75
"""The View is the presentation layer of the application."""
76
- def show_item_list(self, item_type: str, item_list: list[Any]) -> None:
+ def show_item_list(self, item_type: str, item_list: dict[Any, Any]) -> None:
77
print(item_type.upper() + " LIST:")
78
for item in item_list:
79
print(item)
0 commit comments