From 921657e03203a7d929da04caa7c173d237a953b5 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 14 Dec 2020 20:54:18 +0100 Subject: [PATCH] flake8 . --builtins=__qualname__ --- .github/workflows/lint_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index c7174f7..3392464 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -9,7 +9,7 @@ jobs: - run: pip install black codespell flake8 isort pytest pyupgrade - run: black --check . || true - run: codespell --quiet-level=2 || true # --ignore-words-list="" --skip="" - - run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + - run: flake8 . --builtins=__qualname__ --count --select=E9,F63,F7,F82 --show-source --statistics - run: isort --profile black . || true - run: pip install -r requirements.txt || true - run: pytest . || true