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.
1 parent 0588951 commit 11a8aecCopy full SHA for 11a8aec
stubs/assertpy/assertpy/collection.pyi
@@ -10,7 +10,7 @@ _V = TypeVar("_V", default=Any)
10
class CollectionMixin(Generic[_V]):
11
def is_iterable(self) -> Self: ...
12
def is_not_iterable(self) -> Self: ...
13
- def is_subset_of(self, *supersets) -> Self: ...
+ def is_subset_of(self, *supersets: _V) -> Self: ...
14
@overload
15
def is_sorted(self, key: Callable[[_V], SupportsRichComparison] = ..., reverse: Literal[False] = False) -> Self: ...
16
0 commit comments