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