We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Iterable
1 parent a63dde1 commit de55f7fCopy full SHA for de55f7f
stubs/assertpy/assertpy/dict.pyi
@@ -1,4 +1,3 @@
1
-from collections.abc import Iterable
2
from typing import Any
3
from typing_extensions import Self
4
@@ -10,5 +9,5 @@ class DictMixin:
10
9
def contains_value(self, *values: object) -> Self: ...
11
def does_not_contain_value(self, *values: object) -> Self: ...
12
# The dicts can contain arbitrary keys and values
13
- def contains_entry(self, *args: Iterable[dict[Any, Any]], **kwargs: Any) -> Self: ...
14
- def does_not_contain_entry(self, *args: Iterable[dict[Any, Any]], **kwargs: Any) -> Self: ...
+ def contains_entry(self, *args: dict[Any, Any], **kwargs: Any) -> Self: ...
+ def does_not_contain_entry(self, *args: dict[Any, Any], **kwargs: Any) -> Self: ...
0 commit comments