Skip to content

Commit 17ef371

Browse files
committed
fix(makefile): update pytype command
Updated the Makefile to call pytype with '-k -j auto' options (continue on error and run checks in parallel).
1 parent 250a767 commit 17ef371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ install:
1313
.PHONY: lint
1414
lint:
1515
pre-commit run -a
16-
if type pytype >/dev/null 2>&1; then pytype cardano_clusterlib; fi
16+
if command -v pytype >/dev/null 2>&1; then pytype -k -j auto cardano_clusterlib; fi
1717

1818
# build package
1919
.PHONY: build

0 commit comments

Comments
 (0)