Fixed kwargs RST bug
This commit is contained in:
parent
8a12d89ffc
commit
dd4b0caf59
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ class TaskOrchestrator:
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
function (function): The target function to run in the background
|
function (function): The target function to run in the background
|
||||||
*args, **kwargs: Arguments that will be passed to `function` at runtime.
|
args, kwargs: Arguments that will be passed to `function` at runtime.
|
||||||
"""
|
"""
|
||||||
# Create a task object
|
# Create a task object
|
||||||
task = Task(function, *args, **kwargs)
|
task = Task(function, *args, **kwargs)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue