mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-22 20:01:29 +08:00
Replace Any with Incomplete in many places (#9565)
This commit is contained in:
@@ -15,9 +15,9 @@ _V = TypeVar("_V", bound=VBase)
|
||||
_W = TypeVar("_W", bound=SupportsWrite[bytes])
|
||||
|
||||
class VBase:
|
||||
group: Any | None
|
||||
behavior: Any | None
|
||||
parentBehavior: Any | None
|
||||
group: Incomplete | None
|
||||
behavior: Incomplete | None
|
||||
parentBehavior: Incomplete | None
|
||||
isNative: bool
|
||||
def __init__(self, group: Incomplete | None = ...) -> None: ...
|
||||
def copy(self, copyit: VBase) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user