Fix process_async_iterable_helper.

This commit is contained in:
Andrey Rakhmatullin 2020-05-21 15:14:17 +05:00
parent cab1207ce6
commit f6b985eaa9
1 changed files with 1 additions and 1 deletions

View File

@ -27,5 +27,5 @@ async def process_async_iterable_helper(it, in_predicate=None, out_predicate=Non
if processor is not None:
o = processor(o)
if out_predicate and not out_predicate(o):
return
continue
yield o