From 7486baa0ad0a3de3a41ec7c20225249b629ec693 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Fri, 13 Feb 2026 02:35:02 +0100 Subject: [PATCH] fix: remove unused imports --- gunicorn/dirty/arbiter.py | 1 - tests/ctl/test_handlers.py | 3 --- 2 files changed, 4 deletions(-) diff --git a/gunicorn/dirty/arbiter.py b/gunicorn/dirty/arbiter.py index fe7567ba..63962ace 100644 --- a/gunicorn/dirty/arbiter.py +++ b/gunicorn/dirty/arbiter.py @@ -14,7 +14,6 @@ import errno import fnmatch import os import signal -import sys import tempfile import time diff --git a/tests/ctl/test_handlers.py b/tests/ctl/test_handlers.py index 4d279e94..8b2771da 100644 --- a/tests/ctl/test_handlers.py +++ b/tests/ctl/test_handlers.py @@ -4,13 +4,10 @@ """Tests for control socket command handlers.""" -import os import signal import time from unittest.mock import MagicMock, patch -import pytest - from gunicorn.ctl.handlers import CommandHandlers