Skip to content

Commit

Permalink
deep source: address style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shcheklein committed Jul 4, 2019
1 parent 2dfefba commit ba57906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dvc/repo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def graph(self, stages=None, from_directory=None):
G_active = nx.DiGraph()
stages = stages or self.stages(from_directory, check_dag=False)
stages = [stage for stage in stages if stage]
outs = dict()
outs = {}

for stage in stages:
for out in stage.outs:
Expand Down Expand Up @@ -335,7 +335,7 @@ def graph(self, stages=None, from_directory=None):
G_active.add_node(node, stage=stage)

for dep in stage.deps:
for out in outs.keys():
for out in outs:
if (
out == dep.path_info
or dep.path_info.isin(out)
Expand Down

0 comments on commit ba57906

Please sign in to comment.