From 531071040eb1d3ef478980fc543ae886ab79c4f8 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Wed, 25 Feb 2026 13:20:21 +0300 Subject: [PATCH 1/2] Reformatting (black) --- tests/units/exceptions/Exception/test_set001__research.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/units/exceptions/Exception/test_set001__research.py b/tests/units/exceptions/Exception/test_set001__research.py index e679cf4..3365865 100644 --- a/tests/units/exceptions/Exception/test_set001__research.py +++ b/tests/units/exceptions/Exception/test_set001__research.py @@ -1,5 +1,3 @@ - - class TestSet002__usage: def test_000__research(self): e = Exception("a\n1") From 03749daaa2424cb7a5875fcccba3aa30211a5430 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Wed, 25 Feb 2026 13:22:51 +0300 Subject: [PATCH 2/2] [CI] Check code style with black --- .github/workflows/package-verification.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/package-verification.yml b/.github/workflows/package-verification.yml index 27c28c9..c99295e 100644 --- a/.github/workflows/package-verification.yml +++ b/.github/workflows/package-verification.yml @@ -27,13 +27,16 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install flake8 flake8-pyproject ruff + python -m pip install flake8 flake8-pyproject ruff black - name: Lint with flake8 run: | flake8 . - name: Lint with ruff run: | ruff check . + - name: Check with black + run: | + black --check . test: runs-on: ubuntu-latest