Skip to content

Commit

Permalink
Fix DTLSChannel typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oremanj committed Dec 1, 2023
1 parent b712386 commit a765f88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trio-stubs/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -473,10 +473,10 @@ class DTLSChannel(_NotConstructible, trio.abc.Channel[bytes], metaclass=ABCMeta)
async def receive(self) -> bytes: ...
def set_ciphertext_mtu(self, new_mtu: int) -> None: ...
def get_cleartext_mtu(self) -> int: ...
def statistics(self) -> Any: ...
def statistics(self) -> DTLSChannelStatistics: ...
async def aclose(self) -> None: ...
def close(self) -> None: ...
def __enter__(self) -> DTLSChannelStatistics: ...
def __enter__(self) -> DTLSChannel: ...
def __exit__(
self,
exc_type: type[BaseException] | None,
Expand Down

0 comments on commit a765f88

Please sign in to comment.