From b7bfc0d7e58915a11239be2ea37eafb3bfe6009a Mon Sep 17 00:00:00 2001 From: 2byrds <2byrds@gmail.com> Date: Tue, 6 Aug 2024 10:45:31 -0400 Subject: [PATCH] updated autopep8 settings to ignore line wrapping check Signed-off-by: 2byrds <2byrds@gmail.com> --- .github/workflows/python-formatting.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-formatting.yml b/.github/workflows/python-formatting.yml index 0b8496a..953802c 100644 --- a/.github/workflows/python-formatting.yml +++ b/.github/workflows/python-formatting.yml @@ -19,10 +19,10 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.x' + python-version: '3.12' - name: Install autopep8 run: pip install autopep8 - name: Run autopep8 - run: autopep8 --diff --exit-code -r . \ No newline at end of file + run: autopep8 --in-place --ignore=E501 --diff --exit-code -r . \ No newline at end of file