Skip to content

Commit 95b4534

Browse files
authored
Added missing return keyword (#792)
1 parent 47409b0 commit 95b4534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/benchpark/spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def intersects(self, other: "VariantMap") -> bool:
5353

5454
def satisfies(self, other: "VariantMap") -> bool:
5555
if isinstance(other, ConcreteVariantMap):
56-
self == other
56+
return self == other
5757

5858
return all(
5959
name in self and set(self[name]) >= set(other[name]) for name in other

0 commit comments

Comments
 (0)