PEP8 auditing: fix 'dep_file.py'

parent c2b03a90
......@@ -57,7 +57,7 @@ class DepRelation(object):
def satisfies(self, rel_b):
"""Check if the current dependency relation matches the provided one"""
if (rel_b.direction == DepRelation.PROVIDE or
self.direction == DepRelation.USE):
self.direction == DepRelation.USE):
return False
if rel_b.rel_type == self.rel_type and rel_b.obj_name == self.obj_name:
return True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment