From 269dded906cef24bc9d569047ef42f704f054ff5 Mon Sep 17 00:00:00 2001 From: Ahmad Wahid <59763365+Ahmad-Wahid@users.noreply.github.com> Date: Mon, 11 Mar 2024 20:32:01 +0100 Subject: [PATCH] Addd comma at the end of the args --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 49a8f21..3548d07 100644 --- a/README.rst +++ b/README.rst @@ -135,8 +135,8 @@ This is how you do it args=[arg1, arg2], # Arguments passed into function when executed kwargs={'foo': 'bar'}, # Keyword arguments passed into function when executed repeat=10, # Repeat this number of times (None means repeat forever) - result_ttl=300 # Specify how long (in seconds) successful jobs and their results are kept. Defaults to -1 (forever) - ttl=200 # Specifies the maximum queued time (in seconds) before it's discarded. Defaults to None (infinite TTL). + result_ttl=300, # Specify how long (in seconds) successful jobs and their results are kept. Defaults to -1 (forever) + ttl=200, # Specifies the maximum queued time (in seconds) before it's discarded. Defaults to None (infinite TTL). queue_name=queue_name, # In which queue the job should be put in meta={'foo': 'bar'}, # Arbitrary pickleable data on the job itself use_local_timezone=False # Interpret hours in the local timezone