Skip to content

Commit de55f7f

Browse files
authored
[assertpy] Remove spurious Iterable from star arguments (#15441)
1 parent a63dde1 commit de55f7f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

stubs/assertpy/assertpy/dict.pyi

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from collections.abc import Iterable
21
from typing import Any
32
from typing_extensions import Self
43

@@ -10,5 +9,5 @@ class DictMixin:
109
def contains_value(self, *values: object) -> Self: ...
1110
def does_not_contain_value(self, *values: object) -> Self: ...
1211
# 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: ...
12+
def contains_entry(self, *args: dict[Any, Any], **kwargs: Any) -> Self: ...
13+
def does_not_contain_entry(self, *args: dict[Any, Any], **kwargs: Any) -> Self: ...

0 commit comments

Comments
 (0)