Fixed kwargs RST bug

This commit is contained in:
Joel Collins 2019-03-19 16:59:43 +00:00
parent 8a12d89ffc
commit dd4b0caf59

View file

@ -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)