From: Rob van der Linde Date: Thu, 5 Oct 2023 02:13:45 +0000 (+1300) Subject: python: netcmd: dbcheck: fix import grouping and order X-Git-Tag: talloc-2.4.2~1136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a930456f0c9043ddfed216c0726046fb1ff8da43;p=thirdparty%2Fsamba.git python: netcmd: dbcheck: fix import grouping and order Signed-off-by: Rob van der Linde Reviewed-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/netcmd/dbcheck.py b/python/samba/netcmd/dbcheck.py index 4d5c79ff11b..78a32c33537 100644 --- a/python/samba/netcmd/dbcheck.py +++ b/python/samba/netcmd/dbcheck.py @@ -16,18 +16,16 @@ # along with this program. If not, see . # -import ldb import sys + +import ldb import samba.getopt as options +from samba import colour from samba.auth import system_session -from samba.samdb import SamDB -from samba.netcmd import ( - Command, - CommandError, - Option -) from samba.dbchecker import dbcheck -from samba import colour +from samba.samdb import SamDB + +from . import Command, CommandError, Option class cmd_dbcheck(Command):