Browse Source

Fix pycodestyle issue

feature/python-types
Darko Poljak 4 years ago
parent
commit
10a29ca9e6
  1. 2
      cdist/config.py

2
cdist/config.py vendored

@ -48,7 +48,7 @@ def graph_check_cycle(graph):
for node in graph:
# Cycle path.
path = [node]
has_cycle = _graph_dfs_cycle( graph, node, path)
has_cycle = _graph_dfs_cycle(graph, node, path)
if has_cycle:
return has_cycle, path
return False, None

Loading…
Cancel
Save