(self, direction: Direction)
| 97 | self.facing = self.facing.left() |
| 98 | |
| 99 | def face(self, direction: Direction): |
| 100 | if self.facing == direction: |
| 101 | return |
| 102 | else: |
| 103 | self.turn_right() |
| 104 | return self.face(direction) |
| 105 | |
| 106 | def move(self): |
| 107 | self.send("MOVE") |
no test coverage detected