From 692572a3b9e2a43bcc5404927641655d6b989f1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Wed, 28 Feb 2024 12:48:31 +0800 Subject: [PATCH] style (NFC) --- artiq/master/scheduler.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/artiq/master/scheduler.py b/artiq/master/scheduler.py index 037e012bd..18e16f90d 100644 --- a/artiq/master/scheduler.py +++ b/artiq/master/scheduler.py @@ -510,8 +510,7 @@ class Scheduler: """Returns ``True`` if termination is requested.""" for pipeline in self._pipelines.values(): if rid in pipeline.pool.runs: - run = pipeline.pool.runs[rid] + run = pipeline.pool.runs[rid] if run.termination_requested: return True return False -