Blacken our code (#2125) · unconnect/TheAlgorithmsInPython@f97af65 · GitHub
Skip to content

Commit f97af65

Browse files
cclaussgithub-actions
andauthored
Blacken our code (TheAlgorithms#2125)
* Blacken Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 62f7561 commit f97af65

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

DIRECTORY.md

Lines changed: 2 additions & 0 deletions

graphs/bidirectional_breadth_first_search.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class BreadthFirstSearch:
4343
[(0, 0), (1, 0), (2, 0), (3, 0), (3, 1), (4, 1),
4444
(5, 1), (5, 2), (5, 3), (5, 4), (5, 5), (6, 5), (6, 6)]
4545
"""
46+
4647
def __init__(self, start, goal):
4748
self.start = Node(start[1], start[0], goal[1], goal[0], None)
4849
self.target = Node(goal[1], goal[0], goal[1], goal[0], None)
@@ -111,6 +112,7 @@ class BidirectionalBreadthFirstSearch:
111112
[(0, 0), (0, 1), (0, 2), (1, 2), (2, 2), (2, 3),
112113
(2, 4), (3, 4), (3, 5), (3, 6), (4, 6), (5, 6), (6, 6)]
113114
"""
115+
114116
def __init__(self, start, goal):
115117
self.fwd_bfs = BreadthFirstSearch(start, goal)
116118
self.bwd_bfs = BreadthFirstSearch(goal, start)

maths/entropy.py

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)