From d4b403431152cbbbf31ff723562b069a36c330c4 Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Tue, 26 Nov 2019 19:29:30 +0100 Subject: [PATCH] fix missing : in documentation example (#386) --- docs/client.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/client.rst b/docs/client.rst index 9b2ba36..80c66ca 100644 --- a/docs/client.rst +++ b/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