Skip to content

Commit 22403d3

Browse files
authored
Drop accidentally added whitespaces in asyncio internals (GH-31900)
1 parent 2cf7f86 commit 22403d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncio/selector_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ async def sock_recvfrom_into(self, sock, buf, nbytes=0):
485485
raise ValueError("the socket must be non-blocking")
486486
if not nbytes:
487487
nbytes = len(buf)
488-
488+
489489
try:
490490
return sock.recvfrom_into(buf, nbytes)
491491
except (BlockingIOError, InterruptedError):

0 commit comments

Comments
 (0)