From cdbb34e976be522118c20551ea5c7f4dcdb002ae Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 25 Sep 2018 22:54:18 -0400 Subject: [PATCH] pylint fix --- torba/baseaccount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torba/baseaccount.py b/torba/baseaccount.py index a9edba945..a53712465 100644 --- a/torba/baseaccount.py +++ b/torba/baseaccount.py @@ -359,7 +359,7 @@ class BaseAccount: def get_unspent_outputs(self, **constraints): return self.ledger.db.get_utxos_for_account(self, **constraints) - def get_transactions(self) -> 'List[basetransaction.BaseTransaction]': + def get_transactions(self) -> List['basetransaction.BaseTransaction']: return self.ledger.db.get_transactions(self) @defer.inlineCallbacks