From 458c7517eb214689a04db82627fa675b917d477e Mon Sep 17 00:00:00 2001 From: eleanorjboyd Date: Thu, 9 Jan 2025 11:26:09 -0800 Subject: [PATCH] stray debugging print left behind --- python_files/unittestadapter/pvsc_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python_files/unittestadapter/pvsc_utils.py b/python_files/unittestadapter/pvsc_utils.py index 34b8553600f1..4d1cbfb5e110 100644 --- a/python_files/unittestadapter/pvsc_utils.py +++ b/python_files/unittestadapter/pvsc_utils.py @@ -350,7 +350,6 @@ def send_post_request( encoded = request.encode("utf-8") bytes_written = 0 while bytes_written < len(encoded): - print("writing more bytes!") segment = encoded[bytes_written : bytes_written + size] bytes_written += __writer.write(segment) __writer.flush()