Returns an object with a .items() call method that iterates over key,value pairs of its information.
(self, item: str)
| 18 | |
| 19 | @abstractmethod |
| 20 | def get(self, item: str) -> dict: |
| 21 | """Returns an object with a .items() call method |
| 22 | that iterates over key,value pairs of its information.""" |
| 23 | pass |
| 24 | |
| 25 | @property |
| 26 | @abstractmethod |
no outgoing calls