From e6733a3f5199560afa0df7a3f214b393c42b9b80 Mon Sep 17 00:00:00 2001 From: Sky O Date: Fri, 29 Mar 2024 19:22:21 +0000 Subject: [PATCH] Why even bother --- moto/moto_proxy/utils.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/moto/moto_proxy/utils.py b/moto/moto_proxy/utils.py index ed5cb69b4..c96f669e8 100644 --- a/moto/moto_proxy/utils.py +++ b/moto/moto_proxy/utils.py @@ -39,21 +39,19 @@ def get_body_from_form_data( return def on_header_begin(): - print("YO NEW HEADER") - h = Header() - current_part.headers.append(h) + return def on_header_end(): return def on_header_field(b,s,e): - print("YO HEADER FIELD") + h = Header() + current_part.headers.append(h) current_part.headers[-1].name = b[s:e] return def on_header_value(b,s,e): - print("YO HEADER VALUE") current_part.headers[-1].value = b[s:e] return