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:
Miguel Ángel García 2018-09-18 08:01:26 +02:00 committed by Yury Selivanov
parent 7bfbda46f4
commit 9c53fa6ad9
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ Running Tasks Concurrently
factorial("A", 2),
factorial("B", 3),
factorial("C", 4),
))
)
asyncio.run(main())