From 074abc17d8c8757e9f6c80d06fa6c4f1fdb37bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Sz=C3=A9pk=C3=BAti?= Date: Thu, 11 Dec 2025 21:58:13 +0100 Subject: [PATCH] Remove unused version parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bence Szépkúti --- scripts/mbedtls_framework/interface_checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/mbedtls_framework/interface_checks.py b/scripts/mbedtls_framework/interface_checks.py index 37c5f5aca..4d67728c5 100644 --- a/scripts/mbedtls_framework/interface_checks.py +++ b/scripts/mbedtls_framework/interface_checks.py @@ -192,7 +192,7 @@ class AbiChecker: self.log.debug("Commit is {}".format(version.commit)) return git_worktree_path - def _update_git_submodules(self, git_worktree_path, version): + def _update_git_submodules(self, git_worktree_path): """Recursively checkout all submodules at the revision recorded in their parent module""" submodule_output = subprocess.check_output( @@ -417,7 +417,7 @@ class AbiChecker: def _get_abi_dump_for_ref(self, version): """Generate the interface information for the specified git revision.""" git_worktree_path = self._get_clean_worktree_for_git_revision(version) - self._update_git_submodules(git_worktree_path, version) + self._update_git_submodules(git_worktree_path) if self.check_abi: self._build_shared_libraries(git_worktree_path, version) self._get_abi_dumps_from_shared_libraries(version)