From 0f278321c8bd65c5cb67425eb837e6581cbb0054 Mon Sep 17 00:00:00 2001 From: Mark Blakeney Date: Wed, 20 Apr 2022 19:13:38 +1000 Subject: [PATCH] Remove stray/debug remnant print() (#38) --- src/microdot_asyncio.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/microdot_asyncio.py b/src/microdot_asyncio.py index 7d80c02..6f1be73 100644 --- a/src/microdot_asyncio.py +++ b/src/microdot_asyncio.py @@ -79,7 +79,6 @@ class Request(BaseRequest): # body body = b'' - print(Request.max_body_length) if content_length and content_length <= Request.max_body_length: body = await client_stream.readexactly(content_length) stream = None