From 8364fd96e8ba3b082ffb0d7dda21a3236a66eab5 Mon Sep 17 00:00:00 2001 From: nicole trinity Date: Wed, 7 Aug 2024 10:33:25 -0400 Subject: [PATCH] remove unused imports --- sshuttle/cmdline.py | 2 +- tests/client/test_helpers.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/sshuttle/cmdline.py b/sshuttle/cmdline.py index a32c6e7..11d6796 100644 --- a/sshuttle/cmdline.py +++ b/sshuttle/cmdline.py @@ -9,7 +9,7 @@ import sshuttle.firewall as firewall import sshuttle.hostwatch as hostwatch import sshuttle.ssyslog as ssyslog from sshuttle.options import parser, parse_ipport -from sshuttle.helpers import family_ip_tuple, log, Fatal, start_stdout_stderr_flush_thread +from sshuttle.helpers import family_ip_tuple, log, Fatal from sshuttle.sudoers import sudoers diff --git a/tests/client/test_helpers.py b/tests/client/test_helpers.py index 794c284..bfbb145 100644 --- a/tests/client/test_helpers.py +++ b/tests/client/test_helpers.py @@ -2,7 +2,6 @@ import io import socket from socket import AF_INET, AF_INET6 import errno -import time from unittest.mock import patch, call import sshuttle.helpers