mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Fix type stubs in transports.pyi (#1255)
This commit is contained in:
committed by
Matthias Kramm
parent
595e601882
commit
2ed9ee104f
@@ -18,7 +18,7 @@ class WriteTransport(BaseTransport):
|
||||
) -> None: ...
|
||||
def get_write_buffer_size(self) -> int: ...
|
||||
def write(self, data: Any) -> None: ...
|
||||
def writelines(self, list_of_data: List[Any]): ...
|
||||
def writelines(self, list_of_data: List[Any]) -> None: ...
|
||||
def write_eof(self) -> None: ...
|
||||
def can_write_eof(self) -> bool: ...
|
||||
def abort(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user