Skip to content

Commit

Permalink
Fix makefile lint command
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksym Zemlianyi committed Dec 2, 2024
1 parent 0601eb5 commit d2e0eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ format: # Format code with Black

lint: # Lint the codebase
@echo "======= Running lint for code... ======="
poetry run flake8 --max-line-length=120 --ignore=E731
poetry run flake8 --extend-exclude .venv,dist --max-line-length=120 --ignore=E731
@echo "======= Code linting completed successfully. =======\n"

coverage: # Check coverage the codebase
Expand Down

0 comments on commit d2e0eaf

Please sign in to comment.