From 2d1649f97299f6ee41f5e52f7c7e2e47bed6f509 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 21 Aug 2021 00:27:34 -0400 Subject: [PATCH] pylint disable shuffle() arg check --- lbry/wallet/coinselection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/wallet/coinselection.py b/lbry/wallet/coinselection.py index 6c49cf5ef..2733518f9 100644 --- a/lbry/wallet/coinselection.py +++ b/lbry/wallet/coinselection.py @@ -141,7 +141,7 @@ class CoinSelector: _) -> List[OutputEffectiveAmountEstimator]: """ Accumulate UTXOs at random until there is enough to cover the target. """ target = self.target + self.cost_of_change - self.random.shuffle(txos, random=self.random.random) + self.random.shuffle(txos, random=self.random.random) # pylint: disable=deprecated-argument selection = [] amount = 0 for coin in txos: