Commit dd4b0caf authored by Joel Collins's avatar Joel Collins
Browse files

Fixed kwargs RST bug

parent 8a12d89f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ class TaskOrchestrator:
    
        Args:
            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
        task = Task(function, *args, **kwargs)