From 262117c4f8cbdae584c61c3b1f43b2a9dee0ba46 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 10 Aug 2026 14:04:26 +0500 Subject: [PATCH] build-all: drop unused `kwargs` in `build_dependency` --- nix/build-all.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/nix/build-all.py b/nix/build-all.py index 9ab60016d5..b322a91c4e 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -680,7 +680,6 @@ def build_dependency( additional_files: dict[str, str] | None = None, no_append_name=False, cmake_dir=None, - **kwargs, ) -> None: """Handles building of dependencies with different tools (which are distinguished with the `mode` argument. `build_tool_args` is expected to be @@ -689,7 +688,6 @@ def build_dependency( :param pre_compile_subs: A sequence of ``(fn, before, after)`` :param additional_files: Mapping path->url. - :param kwargs: Additional ``mode`` related kwargs. """ check_dir = os.path.join(DEPS_DIR, "install", name) if os.path.exists(check_dir):