From 2b73d3d109f23364b2b6a3a45662f6388b7aa832 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 16 Oct 2018 21:53:23 -0400 Subject: [PATCH] pylint fixes --- torba/baseaccount.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/torba/baseaccount.py b/torba/baseaccount.py index 86e6d3cef..422d11c8e 100644 --- a/torba/baseaccount.py +++ b/torba/baseaccount.py @@ -1,6 +1,6 @@ import random import typing -from typing import List, Dict, Tuple, Type, Optional, Any +from typing import Dict, Tuple, Type, Optional, Any from torba.mnemonic import Mnemonic from torba.bip32 import PrivateKey, PubKey, from_extended_key_string @@ -10,7 +10,6 @@ from torba.constants import COIN if typing.TYPE_CHECKING: from torba import baseledger from torba import wallet as basewallet - from torba import basetransaction class AddressManager: