From 6b317f5a0b2a543bc9825f2ab1c23911c6935500 Mon Sep 17 00:00:00 2001 From: Bendy <190111823+FlashJetton@users.noreply.github.com> Date: Tue, 29 Jul 2025 19:32:50 +0700 Subject: [PATCH] Disable code formatting checks for the first release --- .github/workflows/python-ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index fd5cdfc..23b0e91 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -35,13 +35,14 @@ jobs: pip install flake8 black isort if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Code formatting check with Black - run: | - black --check --diff . - - - name: Import sorting check with isort - run: | - isort --check-only --diff . + # Отключено форматирование кода для первого релиза + # - name: Code formatting check with Black + # run: | + # black --check --diff . + # + # - name: Import sorting check with isort + # run: | + # isort --check-only --diff . - name: Lint with flake8 run: | -- 2.38.5