Skip to content

Commit 0f27832

Browse files
authored
Remove stray/debug remnant print() (#38)
1 parent acf20cc commit 0f27832

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/microdot_asyncio.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ async def create(app, client_stream, client_addr):
7979

8080
# body
8181
body = b''
82-
print(Request.max_body_length)
8382
if content_length and content_length <= Request.max_body_length:
8483
body = await client_stream.readexactly(content_length)
8584
stream = None

0 commit comments

Comments
 (0)