Skip to content

Commit f015bc7

Browse files
Address typing fix for new mypy release (#3068)
1 parent 5999003 commit f015bc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elasticsearch/dsl/response/aggs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def _wrap_bucket(self, data: Dict[str, Any]) -> Bucket[_R]:
6363
)
6464

6565
def __iter__(self) -> Iterator["Agg"]: # type: ignore[override]
66-
return iter(self.buckets) # type: ignore[arg-type]
66+
return iter(self.buckets)
6767

6868
def __len__(self) -> int:
6969
return len(self.buckets)

0 commit comments

Comments
 (0)