From 28de7722bd024cc7f240d8fdb377a1d45aa6d98d Mon Sep 17 00:00:00 2001 From: Etienne Audet-Cobello Date: Mon, 24 Jun 2024 19:44:53 -0400 Subject: [PATCH] revert format --- build-scripts/hack/update-component-versions.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-scripts/hack/update-component-versions.py b/build-scripts/hack/update-component-versions.py index 3f62ce5cf5..9a7f674b49 100755 --- a/build-scripts/hack/update-component-versions.py +++ b/build-scripts/hack/update-component-versions.py @@ -77,9 +77,7 @@ def get_containerd_version() -> str: """Update containerd version using latest tag of specified branch""" containerd_repo = util.read_file(COMPONENTS / "containerd/repository") - with util.git_repo( - containerd_repo, CONTAINERD_RELEASE_BRANCH, shallow=False - ) as dir: + with util.git_repo(containerd_repo, CONTAINERD_RELEASE_BRANCH, shallow=False) as dir: # Get the latest tagged release from the current branch return util.parse_output(["git", "describe", "--tags", "--abbrev=0"], cwd=dir)