Skip to content

Commit 3364529

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7804180 commit 3364529

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: graphs/bidirectional_search.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ def expand_search(
107107

108108

109109
def construct_path(
110-
intersection: int, forward_paths: Dict[int, List[int]], backward_paths: Dict[int, List[int]]
110+
intersection: int,
111+
forward_paths: Dict[int, List[int]],
112+
backward_paths: Dict[int, List[int]],
111113
) -> List[int]:
112114
"""
113115
Construct the full path from the intersection point.
@@ -178,4 +180,4 @@ def main():
178180

179181

180182
if __name__ == "__main__":
181-
main()
183+
main()

0 commit comments

Comments
 (0)