Skip to content

Commit ee2ff1a

Browse files
miss-islingtonmagmax
authored andcommitted
Fix syntax error on Asyncio example in doc (GH-9387) (GH-9388)
The `gather` method requires to close the parenthesis, but it is being closed twice. (cherry picked from commit 9c53fa6) Co-authored-by: Miguel Ángel García <[email protected]>
1 parent 9a89fd6 commit ee2ff1a

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
@@ -232,7 +232,7 @@ Running Tasks Concurrently
232232
factorial("A", 2),
233233
factorial("B", 3),
234234
factorial("C", 4),
235-
))
235+
)
236236

237237
asyncio.run(main())
238238

0 commit comments

Comments
 (0)