From f18e410f67f1163632d29834b15e6007adfb81ea Mon Sep 17 00:00:00 2001 From: "B.Jothin kumar" Date: Fri, 8 Oct 2021 12:39:35 +0530 Subject: [PATCH] Update lint_python.yml --- .github/workflows/lint_python.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index d850a6f..d32ab8b 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -13,7 +13,8 @@ jobs: - run: black --check . || true - run: codespell --ignore-words-list=ans - run: flake8 . --count --max-complexity=19 --max-line-length=88 --show-source --statistics - - run: isort --check-only --profile black . + - run: python3 -m pip install isort + - run: isort --profile black . - run: pip install -r requirements.txt || pip install --editable . || true - run: mkdir --parents --verbose .mypy_cache - run: mypy --ignore-missing-imports --install-types --non-interactive .