(self, char: str, from_loc: Point, to_loc: Point)
| 269 | |
| 270 | |
| 271 | def transport(self, char: str, from_loc: Point, to_loc: Point): |
| 272 | self.pick_known(char, from_loc) |
| 273 | self.drop_off(to_loc) |
| 274 | |
| 275 | |
| 276 | def pick_unknown(self, char: str): |
no test coverage detected