forked from LBRYCommunity/lbry-sdk
pylint fix
This commit is contained in:
parent
5c5b0ace53
commit
cdbb34e976
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue