Fix syntax error on Asyncio example in doc (GH-9387)
The `gather` method requires to close the parenthesis, but it is being closed twice.
This commit is contained in:
parent
7bfbda46f4
commit
9c53fa6ad9
|
@ -238,7 +238,7 @@ Running Tasks Concurrently
|
|||
factorial("A", 2),
|
||||
factorial("B", 3),
|
||||
factorial("C", 4),
|
||||
))
|
||||
)
|
||||
|
||||
asyncio.run(main())
|
||||
|
||||
|
|
Loading…
Reference in New Issue