Skip to content

Commit

Permalink
Update _dtls.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gesslerpd authored Jul 27, 2022
1 parent c1d5d22 commit 93851cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trio/_dtls.py
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ def _read_loop(read_fn):
chunks = []
while True:
try:
chunk = read_fn(2 ** 14) # max TLS record size
chunk = read_fn(2**14) # max TLS record size
except SSL.WantReadError:
break
chunks.append(chunk)
Expand Down

0 comments on commit 93851cf

Please sign in to comment.