mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 20:45:49 +08:00
[assertpy] Remove spurious Iterable from star arguments (#15441)
This commit is contained in:
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user