From 91a6eae83178738a0e89830bc69cc5ab836549ef Mon Sep 17 00:00:00 2001 From: Jonathan Moody <103143855+moodyjon@users.noreply.github.com> Date: Tue, 26 Apr 2022 14:05:58 -0400 Subject: [PATCH] Fix lint issue in iterative_find.py. --- lbry/dht/protocol/iterative_find.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lbry/dht/protocol/iterative_find.py b/lbry/dht/protocol/iterative_find.py index 7c7741902..ab4a66e3d 100644 --- a/lbry/dht/protocol/iterative_find.py +++ b/lbry/dht/protocol/iterative_find.py @@ -276,8 +276,8 @@ class IterativeFinder(AsyncGenerator): async def __anext__(self) -> typing.List['KademliaPeer']: return await super().__anext__() - async def asend(self, val): - return await self.generator.asend(val) + async def asend(self, value): + return await self.generator.asend(value) async def athrow(self, typ, val=None, tb=None): return await self.generator.athrow(typ, val, tb)