From 954301465f53599947c1e48091c96a04f05faf08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 20 Aug 2025 16:23:12 +0200 Subject: [PATCH] s608: ignore --- pkgs/clan-cli/clan_lib/templates/handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/clan-cli/clan_lib/templates/handler.py b/pkgs/clan-cli/clan_lib/templates/handler.py index 0347d6ddb..2ceefd814 100644 --- a/pkgs/clan-cli/clan_lib/templates/handler.py +++ b/pkgs/clan-cli/clan_lib/templates/handler.py @@ -59,7 +59,7 @@ def machine_template( try: template = template_flake.select(template_selector) except ClanError as e: - msg = f"Failed to select template '{template_ident}' from flake '{flake_ref}' (via attribute path: {printable_template_ref})" + msg = f"Failed to select template '{template_ident}' from flake '{flake_ref}' (via attribute path: {printable_template_ref})" # noqa: S608 raise ClanError(msg) from e src = template.get("path") @@ -152,7 +152,7 @@ def clan_template( template_flake = builtin_flake printable_template_ref = f"{clan_templates()}#{builtin_selector}" except ClanError: - msg = f"Failed to select template '{template_ident}' from flake '{flake_ref}' (via attribute path: {printable_template_ref})" + msg = f"Failed to select template '{template_ident}' from flake '{flake_ref}' (via attribute path: {printable_template_ref})" # noqa: S608 raise ClanError(msg) from e src = template.get("path")