Browse Source

fix missing : in documentation example (#386)

pull/389/head
Rotzbua 5 years ago
committed by Miguel Grinberg
parent
commit
d4b4034311
  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 For the convenience of the application, a helper function is provided to
start a custom background task:: start a custom background task::
def my_background_task(my_argument) def my_background_task(my_argument):
# do some background work here! # do some background work here!
pass pass
@ -279,7 +279,7 @@ positional or keyword arguments to invoke the function with.
Here is the ``asyncio`` version:: Here is the ``asyncio`` version::
async def my_background_task(my_argument) async def my_background_task(my_argument):
# do some background work here! # do some background work here!
pass pass

Loading…
Cancel
Save