Skip to content

Commit

Permalink
now we do remove them
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Jan 31, 2023
1 parent 1be7214 commit 2c0b333
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/data/py_38/pep_572_remove_parens.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ async def await_the_walrus():
with (x := await a, y := await b):
pass

# Ideally we should remove one set of parentheses
with ((x := await a, y := await b)):
pass

Expand Down Expand Up @@ -137,8 +136,7 @@ async def await_the_walrus():
with (x := await a, y := await b):
pass

# Ideally we should remove one set of parentheses
with ((x := await a, y := await b)):
with (x := await a, y := await b):
pass

with (x := await a), (y := await b):
Expand Down

0 comments on commit 2c0b333

Please sign in to comment.