Fix lints in tests (#682)

* Fix lints on tests

* Formatting

* Formatting
This commit is contained in:
Nathan Thomas 2024-05-14 16:27:41 -07:00 committed by GitHub
parent 178168cc68
commit 54d05e1330
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 50 additions and 50 deletions

View file

@ -9,9 +9,9 @@ def arun(coro):
def afor(async_gen):
async def _afor(async_gen):
l = []
items = []
async for item in async_gen:
l.append(item)
return l
items.append(item)
return items
return arun(_afor(async_gen))