Skip to content

Commit d00ebee

Browse files
authored
Fixed indentation error (pep8)
1 parent 9ec2656 commit d00ebee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graph/cycle_detection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def contains_cycle(graph):
4444
traversal_states = {vertex: TraversalState.WHITE for vertex in graph}
4545
for vertex, state in traversal_states.items():
4646
if (state == TraversalState.WHITE and
47-
is_in_cycle(graph, traversal_states, vertex)):
47+
is_in_cycle(graph, traversal_states, vertex)):
4848
return True
4949
return False
5050

0 commit comments

Comments
 (0)