diff options
author | DWesl <22566757+DWesl@users.noreply.github.com> | 2022-06-10 21:14:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 21:14:53 -0400 |
commit | d57a513791cd3a673b5bd7621809dd29bfc54321 (patch) | |
tree | 7e2ba0e9a2f279329ed53ae1878462feb4df896c | |
parent | f96cea165425fd569e8a185237669a66f62c49f2 (diff) | |
download | gitpython-d57a513791cd3a673b5bd7621809dd29bfc54321.tar.gz |
FIX: Fix flake8 command line
Got this wrong the first time through
-rw-r--r-- | .github/workflows/cygwin-test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cygwin-test.yml b/.github/workflows/cygwin-test.yml index 19b19edd..ee5867fc 100644 --- a/.github/workflows/cygwin-test.yml +++ b/.github/workflows/cygwin-test.yml @@ -47,7 +47,7 @@ jobs: shell: bash.exe -eo pipefail -o igncr "{0}" run: | set -x - /usr/bin/python flake8 + /usr/bin/python -m flake8 - name: Test with pytest shell: bash.exe -eo pipefail -o igncr "{0}" run: | |