aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/util/httpd.py
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2024-12-09 11:23:48 +0100
committerCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2024-12-12 09:07:04 +0100
commit86bea038625367f5e4f0898c3312ecb7ded1ada4 (patch)
treecf8ca4da1b3f3ff193e153b082d3214a1ebdfa08 /sources/pyside6/tests/util/httpd.py
parent3496f7bc309a139a01d0a423a2bf7157dfd9478e (diff)
tests: handle unused imports and fix type issues
Many modules were imported but unused in our tests. Additionally, some type hint issues were solved. Pick-to: 6.8 Change-Id: Ic2368690e9a6ce0fffea812206185aa4f3dc3c58 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'sources/pyside6/tests/util/httpd.py')
-rw-r--r--sources/pyside6/tests/util/httpd.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/sources/pyside6/tests/util/httpd.py b/sources/pyside6/tests/util/httpd.py
index 9141c191c..198d226bb 100644
--- a/sources/pyside6/tests/util/httpd.py
+++ b/sources/pyside6/tests/util/httpd.py
@@ -8,7 +8,6 @@ import random
import select
import sys
import socketserver as SocketServer
-import tempfile
import threading
sys.path.append(os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "util"))
@@ -38,7 +37,7 @@ class TestSecureHandler(BaseHTTPServer.BaseHTTPRequestHandler):
def do_GET(self):
self.send_head()
- self.wfile.write(py3k.b(TestHandler.DATA))
+ self.wfile.write(TestHandler.DATA)
def do_HEAD(self):
self.send_head()