Commit 17838bcf authored by Guillermo Sanz López's avatar Guillermo Sanz López
Browse files

fix ruff execute in venv

parent 841413f9
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
# functions
lint_cmd := ruff check opencapif_sdk scripts test
VENV_BIN := venv/bin
RUFF := $(VENV_BIN)/ruff
lint_cmd := $(RUFF) check opencapif_sdk scripts test
fix_cmd := $(lint_cmd) --fix