From 9d7d92dd3e09508af6d0edb10f4f32d102079045 Mon Sep 17 00:00:00 2001 From: Taapat Date: Fri, 18 Feb 2022 00:30:56 +0200 Subject: [PATCH] Fix flake8 test on python 2.7 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 197ea51..ea5d6b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: python -O -m compileall ./src/ - name: Check code with flake8 run: | - python3 -m flake8 --ignore=W191,E117,E126,E128,E501,F821 --show-source + flake8 --ignore=W191,E117,E126,E128,E501,F821 --show-source test-language: needs: test-python if: needs.test-python.result == 'success'