Commit 9c53fa6a authored by Miguel Ángel García's avatar Miguel Ángel García Committed by Yury Selivanov

Fix syntax error on Asyncio example in doc (GH-9387)

The `gather` method requires to close the parenthesis, but it is being closed twice.
parent 7bfbda46
......@@ -238,7 +238,7 @@ Running Tasks Concurrently
factorial("A", 2),
factorial("B", 3),
factorial("C", 4),
))
)
asyncio.run(main())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment