mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-25 19:17:16 +08:00
Use typing_extensions.Self instead of _typeshed.Self (#9702)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import sys
|
||||
from _typeshed import Incomplete, Self
|
||||
from typing_extensions import final
|
||||
from _typeshed import Incomplete
|
||||
from typing_extensions import Self, final
|
||||
|
||||
version: str
|
||||
|
||||
@@ -27,7 +27,7 @@ class Curl:
|
||||
def unsetopt(self, option: int) -> Incomplete: ...
|
||||
def pause(self, bitmask: Incomplete) -> Incomplete: ...
|
||||
def errstr(self) -> str: ...
|
||||
def duphandle(self: Self) -> Self: ...
|
||||
def duphandle(self) -> Self: ...
|
||||
def errstr_raw(self) -> bytes: ...
|
||||
def set_ca_certs(self, __value: bytes | str) -> None: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user