From 0351e97a1885964a605fa5e39fcb294cc4411b27 Mon Sep 17 00:00:00 2001 From: tfuxu <73042332+tfuxu@users.noreply.github.com> Date: Sat, 3 Sep 2022 22:35:50 +0200 Subject: [PATCH] fix: ignore E302 in autopep8 --- .github/workflows/autopep8.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autopep8.yml b/.github/workflows/autopep8.yml index d3ba0a59..43afa28a 100644 --- a/.github/workflows/autopep8.yml +++ b/.github/workflows/autopep8.yml @@ -11,7 +11,7 @@ jobs: - name: autopep8 uses: peter-evans/autopep8@v1 with: - args: --recursive --in-place --aggressive --aggressive . + args: --recursive --in-place --aggressive --aggressive --ignore=E302 . - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: