Skip to content

Commit 475b8dc

Browse files
fix error in linting workflow file
1 parent 892abe0 commit 475b8dc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ jobs:
101101

102102
- name: Static Analysis (Linting)
103103
run: |
104-
pip install flake8
105-
# E9,F63,F7,F82 flag fatal syntax errors and undefined names
106-
flake8 ./backend --count --select=E9,F63,F7,F82 --show-source --statistics
104+
pip install flake8
105+
# E9,F63,F7,F82 flag fatal syntax errors and undefined names
106+
flake8 ./backend --count --select=E9,F63,F7,F82 --show-source --statistics
107107
# just a placeholder for your tests. Implement your actual test commands here, e.g. "pytest ..."
108108
- name: Run tests with coverage
109109
run: |

0 commit comments

Comments
 (0)