Skip to content

Commit

Permalink
Fix DatagramRequestHandler.packet type hint. (#12563)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmvanbrunt authored Aug 21, 2024
1 parent fa3ab94 commit 86e7416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/socketserver.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 86e7416

Please sign in to comment.