Skip to content

Commit ee2cfa0

Browse files
remove -q option (#62)
1 parent ddecd23 commit ee2cfa0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/python/Makefile.style

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,27 +44,27 @@ python/autoflake: bh/venv
4444
.PHONY: python/isort/check
4545
## Check python imports using isort
4646
python/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
5353
python/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
5959
python/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
6666
python/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

Comments
 (0)