Skip to content

Commit

Permalink
Fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Boyan-MILANOV committed Oct 3, 2024
1 parent 9c056a5 commit 2d05bd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ dev: $(VENV)/pyvenv.cfg
lint: $(VENV_EXISTS)
. $(VENV_BIN)/activate && \
black --check $(ALL_PY_SRCS) && \
ruff $(PY_MODULE)
ruff check $(PY_MODULE)

.PHONY: format
format: $(VENV_EXISTS)
. $(VENV_BIN)/activate && \
ruff --fix $(PY_MODULE) && \
ruff check --fix $(PY_MODULE) && \
black $(ALL_PY_SRCS)

.PHONY: test
Expand Down

0 comments on commit 2d05bd2

Please sign in to comment.