Skip to content
Snippets Groups Projects
Unverified Commit e807a331 authored by SKAJohanVenter's avatar SKAJohanVenter
Browse files

SAR-286 Fixed type.

parent 00065d64
No related branches found
No related tags found
No related merge requests found
......@@ -462,7 +462,7 @@ class QueueManager:
self._property_update_lock = threading.Lock()
self._logger = logger if logger else logging.getLogger(__name__)
self._task_result: Union[Tuple[str, str, str], Tuple[()]] = ("", "", "")
self._task_result: Tuple[str, str, str] = ("", "", "")
self._tasks_in_queue: Dict[str, str] = {} # unique_id, task_name
self._task_status: Dict[str, str] = {} # unique_id, status
self._threads = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment