Skip to content

Commit 2d1649f

Browse files
committed
pylint disable shuffle() arg check
1 parent 5cb04b8 commit 2d1649f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lbry/wallet/coinselection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def random_draw(self, txos: List[OutputEffectiveAmountEstimator],
141141
_) -> List[OutputEffectiveAmountEstimator]:
142142
""" Accumulate UTXOs at random until there is enough to cover the target. """
143143
target = self.target + self.cost_of_change
144-
self.random.shuffle(txos, random=self.random.random)
144+
self.random.shuffle(txos, random=self.random.random) # pylint: disable=deprecated-argument
145145
selection = []
146146
amount = 0
147147
for coin in txos:

0 commit comments

Comments
 (0)