From dd4b0caf599652da7134b34c8956f0be37c0bf25 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Tue, 19 Mar 2019 16:59:43 +0000 Subject: [PATCH] Fixed kwargs RST bug --- openflexure_microscope/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openflexure_microscope/task.py b/openflexure_microscope/task.py index 526cb91f..eb9656af 100644 --- a/openflexure_microscope/task.py +++ b/openflexure_microscope/task.py @@ -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)