Browse Source

fix missing :

pull/386/head
Rotzbua 6 years ago
committed by GitHub
parent
commit
9daaf0ca6c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      docs/client.rst

4
docs/client.rst

@ -268,7 +268,7 @@ Or in the ``asyncio`` version::
For the convenience of the application, a helper function is provided to
start a custom background task::
def my_background_task(my_argument)
def my_background_task(my_argument):
# do some background work here!
pass
@ -279,7 +279,7 @@ positional or keyword arguments to invoke the function with.
Here is the ``asyncio`` version::
async def my_background_task(my_argument)
async def my_background_task(my_argument):
# do some background work here!
pass

Loading…
Cancel
Save