(self, x, y)
| 38 | return (map_x, map_y) |
| 39 | |
| 40 | def showPlant(self, x, y): |
| 41 | pos = None |
| 42 | map_x, map_y = self.getMapIndex(x, y) |
| 43 | if self.isValid(map_x, map_y) and self.isMovable(map_x, map_y): |
| 44 | pos = self.getMapGridPos(map_x, map_y) |
| 45 | return pos |
no test coverage detected