[assertpy] Remove spurious Iterable from star arguments (#15441)

This commit is contained in:
Sebastian Rittau
2026-02-20 12:45:56 +01:00
committed by GitHub
parent a63dde194e
commit de55f7ff87
+2 -3
View File
@@ -1,4 +1,3 @@
from collections.abc import Iterable
from typing import Any
from typing_extensions import Self
@@ -10,5 +9,5 @@ class DictMixin:
def contains_value(self, *values: object) -> Self: ...
def does_not_contain_value(self, *values: object) -> Self: ...
# The dicts can contain arbitrary keys and values
def contains_entry(self, *args: Iterable[dict[Any, Any]], **kwargs: Any) -> Self: ...
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: ...