Skip to content

Commit e607e8c

Browse files
authored
fix black
1 parent c5196de commit e607e8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphs/a_star.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from __future__ import annotations
22

33
DIRECTIONS = [
4-
[-1, 0], # left
5-
[0, -1], # down
4+
[-1, 0], # left
5+
[0, -1], # down
66
[1, 0], # right
77
[0, 1], # up
88
]

0 commit comments

Comments
 (0)