asyncio: fix signature of set_write_buffer_limits (#4025)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2020-05-17 08:50:31 -07:00
committed by GitHub
parent 4405250ed1
commit 462a3e9dcd
2 changed files with 1 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ class ReadTransport(BaseTransport):
class WriteTransport(BaseTransport):
def set_write_buffer_limits(
self, high: int = ..., low: int = ...
self, high: Optional[int] = ..., low: Optional[int] = ...
) -> None: ...
def get_write_buffer_size(self) -> int: ...
def write(self, data: Any) -> None: ...