From c154612039c6d674f09b73544c99a2cc0c267e7a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 07:58:21 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- testing/test_python.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/testing/test_python.py b/testing/test_python.py index 117571bc1..4144dbf01 100644 --- a/testing/test_python.py +++ b/testing/test_python.py @@ -1,11 +1,13 @@ import pytest -@pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11,2_1]) + +@pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11, 2_1]) def test_params(a): - print('a:', a) + print("a:", a) assert a > 0 + @pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11]) def test_params(a): - print('a:', a) + print("a:", a) assert a > 0