Returns all depots currently in the model.
(self)
| 119 | |
| 120 | @property |
| 121 | def depots(self) -> list[Depot]: |
| 122 | """ |
| 123 | Returns all depots currently in the model. |
| 124 | """ |
| 125 | return self._depots |
| 126 | |
| 127 | @property |
| 128 | def locations(self) -> list[Client | Depot]: |
no outgoing calls