From: Rob van der Linde Date: Tue, 16 May 2023 02:24:27 +0000 (+1200) Subject: netcmd: fix import sort/grouping as per python standard X-Git-Tag: talloc-2.4.1~240 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15440c6d6bfd23cd4756511ec3abb891f3d7f8a3;p=thirdparty%2Fsamba.git netcmd: fix import sort/grouping as per python standard Signed-off-by: Rob van der Linde Reviewed-by: Andrew Bartlett Reviewed-by: Joseph Sutton --- diff --git a/python/samba/netcmd/__init__.py b/python/samba/netcmd/__init__.py index 1401ea263a2..1caafa54a62 100644 --- a/python/samba/netcmd/__init__.py +++ b/python/samba/netcmd/__init__.py @@ -17,16 +17,17 @@ # import optparse +import sys +import textwrap +import traceback + import samba +from ldb import ERR_INVALID_CREDENTIALS, LdbError from samba import colour from samba.auth import system_session from samba.getopt import SambaOption, OptionError from samba.logger import get_samba_logger from samba.samdb import SamDB -from ldb import LdbError, ERR_INVALID_CREDENTIALS -import sys -import traceback -import textwrap from .validators import ValidationError