From 4b84ab4e07b3e221262f98cb649d8d2433c8e711 Mon Sep 17 00:00:00 2001
From: mahabaleshwars <147705296+mahabaleshwars@users.noreply.github.com>
Date: Mon, 10 Mar 2025 18:42:59 +0530
Subject: [PATCH] fix format-check errors

---
 .github/workflows/test-python.yml | 54 +++++++++++++++----------------
 1 file changed, 27 insertions(+), 27 deletions(-)

diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml
index f7a5d92d..d3cdd3d9 100644
--- a/.github/workflows/test-python.yml
+++ b/.github/workflows/test-python.yml
@@ -246,35 +246,35 @@ jobs:
         run: python -c 'import math; print(math.factorial(5))'
 
   setup-versions-from-.tool-versions-file:
-  name: Setup ${{ matrix.python }} ${{ matrix.os }} .tool-versions file
-  runs-on: ${{ matrix.os }}
-  strategy:
-  fail-fast: false
-  matrix:
-    os:
-      [
-        macos-latest,
-        windows-latest,
-        ubuntu-20.04,
-        ubuntu-22.04,
-        macos-13,
-        ubuntu-latest
-      ]
-    python: [3.13.0, 3.14-dev, pypy3.7-v7.3.3, graalpy-24.1.2]
-steps:
-  - name: Checkout
-    uses: actions/checkout@v4
+    name: Setup ${{ matrix.python }} ${{ matrix.os }} .tool-versions file
+    runs-on: ${{ matrix.os }}
+    strategy:
+      fail-fast: false
+      matrix:
+        os:
+          [
+            macos-latest,
+            windows-latest,
+            ubuntu-20.04,
+            ubuntu-22.04,
+            macos-13,
+            ubuntu-latest
+          ]
+        python: [3.13.0, 3.14-dev, pypy3.7-v7.3.3, graalpy-24.1.2]
+      steps:
+        - name: Checkout
+          uses: actions/checkout@v4
 
-  - name: build-tool-versions-file ${{ matrix.python }}
-    run: |
-      echo "python ${{ matrix.python }}" > .tool-versions
+        - name: build-tool-versions-file ${{ matrix.python }}
+          run: |
+            echo "python ${{ matrix.python }}" > .tool-versions
+
+        - name: setup-python using .tool-versions ${{ matrix.python }}
+          id: setup-python-tool-versions
+          uses: ./
+          with:
+            python-version-file: .tool-versions
 
-  - name: setup-python using .tool-versions ${{ matrix.python }}
-    id: setup-python-tool-versions
-    uses: ./
-    with:
-      python-version-file: .tool-versions
-      
   setup-pre-release-version-from-manifest:
     name: Setup 3.14.0-alpha.1 ${{ matrix.os }}
     runs-on: ${{ matrix.os }}