Skip to content

Commit

Permalink
Merge pull request #287 from input-output-hk/pytype_args
Browse files Browse the repository at this point in the history
fix(makefile): update pytype command
  • Loading branch information
mkoura authored Jan 17, 2025
2 parents 250a767 + 17ef371 commit 23e13f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ install:
.PHONY: lint
lint:
pre-commit run -a
if type pytype >/dev/null 2>&1; then pytype cardano_clusterlib; fi
if command -v pytype >/dev/null 2>&1; then pytype -k -j auto cardano_clusterlib; fi

# build package
.PHONY: build
Expand Down

0 comments on commit 23e13f8

Please sign in to comment.