1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

python:tests: Remove unused imports

Signed-off-by: Jo Sutton <josutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Jo Sutton 2024-01-18 10:01:49 +13:00 committed by Andrew Bartlett
parent 2489ffbe00
commit 8fe5765822
2 changed files with 5 additions and 5 deletions

View File

@ -30,12 +30,12 @@ os.environ["PYTHONUNBUFFERED"] = "1"
from ldb import SCOPE_BASE
from samba import credentials
from samba.credentials import Credentials, MUST_USE_KERBEROS
from samba.dcerpc import security, samr
from samba.credentials import MUST_USE_KERBEROS
from samba.dcerpc import security
from samba.dsdb import UF_WORKSTATION_TRUST_ACCOUNT, UF_NORMAL_ACCOUNT
from samba.netcmd.domain.models import User
from samba.ndr import ndr_pack, ndr_unpack
from samba.tests import connect_samdb, connect_samdb_env, delete_force
from samba.tests import connect_samdb, delete_force
from samba.tests import BlackboxTestCase, BlackboxProcessError

View File

@ -28,12 +28,12 @@ os.environ["PYTHONUNBUFFERED"] = "1"
from ldb import SCOPE_BASE
from samba.credentials import Credentials, MUST_USE_KERBEROS
from samba.credentials import MUST_USE_KERBEROS
from samba.dcerpc import security, samr
from samba.dsdb import UF_WORKSTATION_TRUST_ACCOUNT
from samba.netcmd.domain.models import User
from samba.ndr import ndr_pack, ndr_unpack
from samba.tests import connect_samdb, connect_samdb_env, delete_force
from samba.tests import connect_samdb, delete_force
from samba.tests import BlackboxTestCase