diff --git a/modules/python/Makefile.style b/modules/python/Makefile.style index 5c9b15c6..ed8e556a 100644 --- a/modules/python/Makefile.style +++ b/modules/python/Makefile.style @@ -44,27 +44,27 @@ python/autoflake: bh/venv .PHONY: python/isort/check ## Check python imports using isort python/isort/check: - @$(DOCKER) pull -q alphachai/isort + @$(DOCKER) pull alphachai/isort @$(MAKE) python/lint/announce/isort @$(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 .PHONY: python/isort ## Fix python imports using isort python/isort: - @$(DOCKER) pull -q alphachai/isort + @$(DOCKER) pull alphachai/isort $(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/isort $(ISORT_FLAGS) $(PYTHON_LINT_TARGETS) .PHONY: python/black/check ## Check python files using black python/black/check: - @$(DOCKER) pull -q alphachai/black + @$(DOCKER) pull alphachai/black @$(MAKE) python/lint/announce/black @$(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/black --check $(PYTHON_LINT_TARGETS) .PHONY: python/black ## Reformat python files using black python/black: - @$(DOCKER) pull -q alphachai/black + @$(DOCKER) pull alphachai/black $(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/black $(PYTHON_LINT_TARGETS) .PHONY: python/flake8