Remove stray/debug remnant print() (#38)

This commit is contained in:
Mark Blakeney
2022-04-20 19:13:38 +10:00
committed by GitHub
parent acf20cc20c
commit 0f278321c8

View File

@@ -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