Skip to content

Commit 20209b0

Browse files
fixed linter errors
1 parent 8f99e3d commit 20209b0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

elasticsearch_dsl/wrappers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ def __contains__(self, item: object) -> bool:
9696
return False
9797

9898
for op in self.OPS:
99-
if op in self._d_ and not self.OPS[op](cast("_SupportsComparison", item), self._d_[op]):
99+
if op in self._d_ and not self.OPS[op](
100+
cast("_SupportsComparison", item), self._d_[op]
101+
):
100102
return False
101103
return True
102104

0 commit comments

Comments
 (0)