Skip to content

Commit 23e13f8

Browse files
authored
Merge pull request #287 from input-output-hk/pytype_args
fix(makefile): update pytype command
2 parents 250a767 + 17ef371 commit 23e13f8

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)