We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7ce61a commit d4b4034Copy full SHA for d4b4034
1 file changed
docs/client.rst
@@ -268,7 +268,7 @@ Or in the ``asyncio`` version::
268
For the convenience of the application, a helper function is provided to
269
start a custom background task::
270
271
- def my_background_task(my_argument)
+ def my_background_task(my_argument):
272
# do some background work here!
273
pass
274
@@ -279,7 +279,7 @@ positional or keyword arguments to invoke the function with.
279
280
Here is the ``asyncio`` version::
281
282
- async def my_background_task(my_argument)
+ async def my_background_task(my_argument):
283
284
285
0 commit comments