1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-30 05:32:01 +02:00

Fixing flake8

This commit is contained in:
Ahmed Muawia Khan 2018-02-23 14:43:14 +01:00
parent 5cea9c28bf
commit d0089ca373
3 changed files with 2 additions and 10 deletions

View File

@ -10,8 +10,7 @@ import json
import sys
from bigchaindb.common import crypto
from bigchaindb.common.exceptions import (StartupError,
DatabaseAlreadyExists,
from bigchaindb.common.exceptions import (DatabaseAlreadyExists,
KeypairNotFoundException,
DatabaseDoesNotExist)
import bigchaindb
@ -19,11 +18,9 @@ from bigchaindb.tendermint.core import BigchainDB
from bigchaindb import backend
from bigchaindb.backend import schema
from bigchaindb.backend import query
from bigchaindb.backend.exceptions import OperationError
from bigchaindb.commands import utils
from bigchaindb.commands.messages import (
CANNOT_START_KEYPAIR_NOT_FOUND,
RETHINKDB_STARTUP_ERROR,
)
from bigchaindb.commands.utils import (
configure_bigchaindb, start_logging_process, input_on_stderr)

View File

@ -6,15 +6,10 @@ import argparse
import builtins
import functools
import multiprocessing as mp
import subprocess
import sys
import rethinkdb as r
from pymongo import uri_parser
import bigchaindb
import bigchaindb.config_utils
from bigchaindb import backend
from bigchaindb.common.exceptions import StartupError
from bigchaindb.log.setup import setup_logging
from bigchaindb.version import __version__

View File

@ -1,5 +1,5 @@
import argparse
from argparse import ArgumentTypeError, Namespace
from argparse import Namespace
import logging
import pytest