remove unused imports

This commit is contained in:
nicole trinity 2024-08-07 10:33:25 -04:00 committed by Brian May
parent 8da94c39ea
commit 8364fd96e8
2 changed files with 1 additions and 2 deletions

View File

@ -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

View File

@ -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