Skip to content

Commit bc11003

Browse files
Linting fixes
1 parent 99732a5 commit bc11003

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pylint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
python -m pip install --upgrade pip
2727
pip install -r requirements.txt
2828
echo "Fixing imports with Isort..."
29-
python -m isort --check --verbose .
29+
python -m isort --verbose .
3030
echo "Formatting code with Black..."
31-
python -m black --check .
31+
python -m black --verbose .
3232
echo "Running Flake8..."
3333
python -m flake8 --config=.flake8 --verbose .
3434
echo "Running Pylint..."

0 commit comments

Comments
 (0)