Upgrade pyupgrade to 2.21.2, apply its changes (#52987)

This commit is contained in:
Ville Skyttä 2021-07-19 11:46:09 +03:00 committed by GitHub
parent c96f01df1f
commit 470f2dd73f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
73 changed files with 152 additions and 162 deletions

View file

@ -165,7 +165,7 @@ async def test_gather_with_concurrency():
return runs
results = await hasync.gather_with_concurrency(
2, *[_increment_runs_if_in_time() for i in range(4)]
2, *(_increment_runs_if_in_time() for i in range(4))
)
assert results == [2, 2, -1, -1]