Skip to content

Commit 11a8aec

Browse files
committed
Annotate supersets
1 parent 0588951 commit 11a8aec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/assertpy/assertpy/collection.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ _V = TypeVar("_V", default=Any)
1010
class CollectionMixin(Generic[_V]):
1111
def is_iterable(self) -> Self: ...
1212
def is_not_iterable(self) -> Self: ...
13-
def is_subset_of(self, *supersets) -> Self: ...
13+
def is_subset_of(self, *supersets: _V) -> Self: ...
1414
@overload
1515
def is_sorted(self, key: Callable[[_V], SupportsRichComparison] = ..., reverse: Literal[False] = False) -> Self: ...
1616
@overload

0 commit comments

Comments
 (0)