forked from spaghetti/spaghetti-code-3
chore: proper emoji directions
This commit is contained in:
parent
e7cf0747a8
commit
230d2cbd50
1 changed files with 4 additions and 4 deletions
8
maze.py
8
maze.py
|
@ -23,10 +23,10 @@ class Direction(StrEnum):
|
|||
"""
|
||||
Possible directions to move to.
|
||||
"""
|
||||
Up = ""
|
||||
Right = ""
|
||||
Down = ""
|
||||
Left = ""
|
||||
Up = "⬆️"
|
||||
Right = "➡️"
|
||||
Down = "⬇️"
|
||||
Left = "⬅️"
|
||||
|
||||
@property
|
||||
def coordinates(self) -> tuple[int, int]:
|
||||
|
|
Loading…
Reference in a new issue