Skip to content

Commit db136d1

Browse files
committed
Remove unused version parameter
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
1 parent bb3c2da commit db136d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/mbedtls_framework/interface_checks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def _get_clean_worktree_for_git_revision(self, version):
192192
self.log.debug("Commit is {}".format(version.commit))
193193
return git_worktree_path
194194

195-
def _update_git_submodules(self, git_worktree_path, version):
195+
def _update_git_submodules(self, git_worktree_path):
196196
"""Recursively checkout all submodules at the revision recorded in their
197197
parent module"""
198198
submodule_output = subprocess.check_output(
@@ -417,7 +417,7 @@ def _cleanup_worktree(self, git_worktree_path):
417417
def _get_abi_dump_for_ref(self, version):
418418
"""Generate the interface information for the specified git revision."""
419419
git_worktree_path = self._get_clean_worktree_for_git_revision(version)
420-
self._update_git_submodules(git_worktree_path, version)
420+
self._update_git_submodules(git_worktree_path)
421421
if self.check_abi:
422422
self._build_shared_libraries(git_worktree_path, version)
423423
self._get_abi_dumps_from_shared_libraries(version)

0 commit comments

Comments
 (0)