From a235f6104482473d52426a318c74105c8541471e Mon Sep 17 00:00:00 2001 From: Dylan Jeannin Date: Tue, 26 May 2026 08:15:04 +0200 Subject: [PATCH] PEP8 fixes --- src/Model/Study.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Model/Study.py b/src/Model/Study.py index 250efa8f..d08e7c4d 100644 --- a/src/Model/Study.py +++ b/src/Model/Study.py @@ -546,7 +546,8 @@ class Study(SQLModel): self.status.scenario = scenario if reduce( - lambda a, s: a or (s.parent is scenario and not s.is_deleted()), + lambda a, s: a or (s.parent is scenario + and not s.is_deleted()), self.scenarios.lst, False ):