Skip to content

Commit

Permalink
Fix whitespace error
Browse files Browse the repository at this point in the history
  • Loading branch information
samayer12 committed Jan 6, 2022
1 parent d95d25d commit aefb2c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt]; then pip install -r requirements.txt; fi
if [ -f dev-requirements.txt]; then pip install -r dev-requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f dev-requirements.txt ]; then pip install -r dev-requirements.txt; fi
- name: flake8
run: flake8 src --max-line-length=120 --show-source --statistics
- name: pylint
Expand Down

0 comments on commit aefb2c3

Please sign in to comment.