From dad0fd7c031b9a4085e0660a0b5e67943b3d7ae9 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Thu, 5 Feb 2026 09:53:11 +0100 Subject: [PATCH] config: Fix formatting with newer ruff --- mkosi/config.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/mkosi/config.py b/mkosi/config.py index a502e1e23..051f71089 100644 --- a/mkosi/config.py +++ b/mkosi/config.py @@ -3720,9 +3720,11 @@ SETTINGS: list[ConfigSetting[Any]] = [ section="Build", default_factory_depends=("distribution", "mirror", "tools_tree_distribution"), default_factory=( - lambda ns: ns["mirror"] - if ns["mirror"] and ns["distribution"] == ns["tools_tree_distribution"] - else None + lambda ns: ( + ns["mirror"] + if ns["mirror"] and ns["distribution"] == ns["tools_tree_distribution"] + else None + ) ), help="Set the mirror to use for the default tools tree", scope=SettingScope.tools, -- 2.47.3