Get EVERY Item from the cached inventory. :return: List of evey item in the cached inventory :rtype: list of Item
(self)
| 262 | return Item(item_id, item_count) |
| 263 | |
| 264 | def all(self): |
| 265 | """ |
| 266 | Get EVERY Item from the cached inventory. |
| 267 | :return: List of evey item in the cached inventory |
| 268 | :rtype: list of Item |
| 269 | """ |
| 270 | return list(self._data.values()) |
| 271 | |
| 272 | def get(self, item_id): |
| 273 | """ |
no outgoing calls