Skip to content

Commit 86e24cb

Browse files
committed
Remove parentheses.
1 parent 2979f3a commit 86e24cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

peps/pep-9999.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ proposal:
5353
return 2
5454
5555
async def main():
56-
result = (async yield from agenerator())
56+
result = async yield from agenerator()
5757
assert result == 2
5858
5959
@@ -250,7 +250,7 @@ For example:
250250
return 2
251251
252252
async def main():
253-
result = (async yield from agenerator())
253+
result = async yield from agenerator()
254254
print(result) # 2
255255
256256

0 commit comments

Comments
 (0)