@@ -44,27 +44,27 @@ python/autoflake: bh/venv
4444.PHONY: python/isort/check
4545## Check python imports using isort
4646python/isort/check:
47- @$(DOCKER) pull -q alphachai/isort
47+ @$(DOCKER) pull alphachai/isort
4848 @$(MAKE) python/lint/announce/isort
4949 @$(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/isort $(ISORT_FLAGS) --check-only $(PYTHON_LINT_TARGETS) --diff
5050
5151.PHONY: python/isort
5252## Fix python imports using isort
5353python/isort:
54- @$(DOCKER) pull -q alphachai/isort
54+ @$(DOCKER) pull alphachai/isort
5555 $(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/isort $(ISORT_FLAGS) $(PYTHON_LINT_TARGETS)
5656
5757.PHONY: python/black/check
5858## Check python files using black
5959python/black/check:
60- @$(DOCKER) pull -q alphachai/black
60+ @$(DOCKER) pull alphachai/black
6161 @$(MAKE) python/lint/announce/black
6262 @$(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/black --check $(PYTHON_LINT_TARGETS)
6363
6464.PHONY: python/black
6565## Reformat python files using black
6666python/black:
67- @$(DOCKER) pull -q alphachai/black
67+ @$(DOCKER) pull alphachai/black
6868 $(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/black $(PYTHON_LINT_TARGETS)
6969
7070.PHONY: python/flake8
0 commit comments