mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Replace Any with Incomplete in many places (#9565)
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
from _typeshed import Incomplete
|
||||
from collections.abc import Callable, Mapping, Sequence
|
||||
from typing import Any
|
||||
|
||||
@@ -8,7 +9,7 @@ class FunctionItem(ExternalItem):
|
||||
function: Callable[..., Any]
|
||||
args: Sequence[Any]
|
||||
kwargs: Mapping[str, Any]
|
||||
return_value: Any | None
|
||||
return_value: Incomplete | None
|
||||
def __init__(
|
||||
self,
|
||||
text: str,
|
||||
|
||||
Reference in New Issue
Block a user