Skip to content

Commit 6548ec1

Browse files
style: sort standard imports by type and alphabet
1 parent 987a472 commit 6548ec1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

graphs/a_star.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
Space Complexity: O(V) to store the graph structures and priority queue.
1212
"""
1313

14+
1415
from __future__ import annotations
1516

16-
from collections.abc import Callable
1717
import heapq
1818
import math
19-
19+
from collections.abc import Callable
2020

2121

2222
# ==========================================

0 commit comments

Comments
 (0)