diff --git a/src/blueapi/worker/task_worker.py b/src/blueapi/worker/task_worker.py index 3a9409963..a8bffff0d 100644 --- a/src/blueapi/worker/task_worker.py +++ b/src/blueapi/worker/task_worker.py @@ -74,7 +74,8 @@ class TaskWorker: _warnings: list[str] # The queue is actually a channel between 2 threads - # most programming languages have a separate abstraction for this but Python reuses Queue + # most programming languages have a separate abstraction for this + # but Python reuses Queue # So it's not used as a standard queue, # but as a box in which to put the "current" task and nothing else # So the calling thread can only ever submit one plan at a time.