From 93851cfe5378e44244c345a6ab41a8962a8e693a Mon Sep 17 00:00:00 2001 From: Peter Gessler Date: Wed, 27 Jul 2022 09:01:18 -0500 Subject: [PATCH] Update _dtls.py --- trio/_dtls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trio/_dtls.py b/trio/_dtls.py index 4cd4392fbc..910637455a 100644 --- a/trio/_dtls.py +++ b/trio/_dtls.py @@ -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)