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

python: netcmd: dbcheck: fix import grouping and order

Signed-off-by: Rob van der Linde <rob@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Rob van der Linde 2023-10-05 15:13:45 +13:00 committed by Andrew Bartlett
parent 3a5a5cae3a
commit a930456f0c

@ -16,18 +16,16 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import ldb
import sys
import ldb
import samba.getopt as options
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.auth import system_session
from samba.dbchecker import dbcheck
from samba.samdb import SamDB
from . import Command, CommandError, Option
class cmd_dbcheck(Command):