mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-15 16:27:08 +08:00
Use Incomplete instead of Any in __getattr__ (#8903)
This commit is contained in:
@@ -177,7 +177,7 @@ class Connection:
|
||||
_T = TypeVar("_T")
|
||||
|
||||
class Context:
|
||||
def __getattr__(self, name: str) -> Any: ... # incomplete
|
||||
def __getattr__(self, name: str) -> Incomplete: ...
|
||||
def __init__(self, method: int) -> None: ...
|
||||
def load_verify_locations(self, cafile: str | None, capath: str | None = ...) -> None: ...
|
||||
def set_options(self, options: int) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user