From 566abade5de6d3bc36e837fa750f49f187b01907 Mon Sep 17 00:00:00 2001 From: Lorenz Herzberger Date: Tue, 27 Sep 2022 19:00:06 +0200 Subject: [PATCH] removed unused imports Signed-off-by: Lorenz Herzberger --- planetmint/commands/planetmint.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/planetmint/commands/planetmint.py b/planetmint/commands/planetmint.py index f2928e8..ef76657 100644 --- a/planetmint/commands/planetmint.py +++ b/planetmint/commands/planetmint.py @@ -10,10 +10,8 @@ the command-line interface (CLI) for Planetmint Server. import os import logging import argparse -import copy import json import sys -from planetmint.backend.tarantool.connection import TarantoolDBConnection from planetmint.core import rollback from planetmint.utils import load_node_key @@ -22,9 +20,8 @@ from planetmint.transactions.common.exceptions import DatabaseDoesNotExist, Vali from planetmint.transactions.types.elections.vote import Vote from planetmint.transactions.types.elections.chain_migration_election import ChainMigrationElection import planetmint -from planetmint import backend, ValidatorElection, Planetmint +from planetmint import ValidatorElection, Planetmint from planetmint.backend import schema -from planetmint.backend import tarantool from planetmint.commands import utils from planetmint.commands.utils import configure_planetmint, input_on_stderr from planetmint.log import setup_logging