Skip to content

Commit 9c53fa6

Browse files
magmax1st1
authored andcommitted
Fix syntax error on Asyncio example in doc (GH-9387)
The `gather` method requires to close the parenthesis, but it is being closed twice.
1 parent 7bfbda4 commit 9c53fa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/asyncio-task.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Running Tasks Concurrently
238238
factorial("A", 2),
239239
factorial("B", 3),
240240
factorial("C", 4),
241-
))
241+
)
242242

243243
asyncio.run(main())
244244

0 commit comments

Comments
 (0)