mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-12 19:12:31 +08:00
Update most test/lint dependencies (#15582)
This commit is contained in:
@@ -4,5 +4,5 @@ from collections.abc import Generator
|
||||
class PaginatedCollection:
|
||||
def __init__(self, method) -> None: ...
|
||||
@property
|
||||
def items(self) -> Generator[Incomplete, None, None]: ...
|
||||
def items(self) -> Generator[Incomplete]: ...
|
||||
def __iter__(self): ...
|
||||
|
||||
@@ -8,7 +8,7 @@ class ResourceCollection:
|
||||
@property
|
||||
def first(self): ...
|
||||
@property
|
||||
def items(self) -> Generator[Incomplete, None, None]: ...
|
||||
def items(self) -> Generator[Incomplete]: ...
|
||||
@property
|
||||
def ids(self): ...
|
||||
def __iter__(self): ...
|
||||
|
||||
Reference in New Issue
Block a user