Fix DatagramRequestHandler.packet type hint. (#12563)

This commit is contained in:
Kevin Van Brunt
2024-08-21 06:53:49 -04:00
committed by GitHub
parent fa3ab94f47
commit 86e74163b9

View File

@@ -162,7 +162,7 @@ class StreamRequestHandler(BaseRequestHandler):
wfile: BinaryIO
class DatagramRequestHandler(BaseRequestHandler):
packet: _socket # undocumented
packet: bytes # undocumented
socket: _socket # undocumented
rfile: BinaryIO
wfile: BinaryIO