MCPcopy Index your code
hub / github.com/faif/python-patterns / show_item_information

Method show_item_information

patterns/structural/mvc.py:67–72  ·  view source on GitHub ↗

Will look for item information by iterating over key,value pairs yielded by item_info.items()

(
        self, item_type: str, item_name: str, item_info: dict
    )

Source from the content-addressed store, hash-verified

65
66 @abstractmethod
67 def show_item_information(
68 self, item_type: str, item_name: str, item_info: dict
69 ) -> None:
70 """Will look for item information by iterating over key,value pairs
71 yielded by item_info.items()"""
72 pass
73
74 @abstractmethod
75 def item_not_found(self, item_type: str, item_name: str) -> None:

Callers 1

show_item_informationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected