Skip to content

Commit 1ede4a2

Browse files
authored
Update makefile
1 parent 4dc821e commit 1ede4a2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pipeline/makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44
# Makefile
55
#
66

7-
BLACK:=black
8-
ISORT:=isort
9-
RUFF:=ruff
7+
BLACK := black
8+
ISORT := isort
9+
RUFF := ruff
1010

1111
.PHONY: all fmt lint test
12-
1312

1413
all: fmt lint test
1514

1615
fmt:
1716
$(BLACK) .
1817
$(ISORT) .
19-
18+
2019
lint:
2120
$(BLACK) --check .
2221
$(ISORT) --check .
2322
$(RUFF) check .
2423

2524
test:
2625
pytest
26+

0 commit comments

Comments
 (0)