File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -406,15 +406,15 @@ black: requirements .black-format
406
406
echo " Running black on" $$ component; \
407
407
echo " ===========================================================" ; \
408
408
. $(VIRTUALENV_DIR ) /bin/activate ; black --config pyproject.toml $$ component/ || exit 1; \
409
- . $(VIRTUALENV_DIR ) /bin/activate ; black $$(grep -rl '^#!/.*python' $$component/bin ) || exit 1; \
409
+ . $(VIRTUALENV_DIR ) /bin/activate ; black --config pyproject.toml $$(grep -rl '^#!/.*python' $$component/bin ) || exit 1; \
410
410
done
411
411
# runner modules and packages
412
412
@for component in $(COMPONENTS_RUNNERS ) ; do\
413
413
echo " ===========================================================" ; \
414
414
echo " Running black on" $$ component; \
415
415
echo " ===========================================================" ; \
416
416
. $(VIRTUALENV_DIR ) /bin/activate ; black --config pyproject.toml $$ component/ || exit 1; \
417
- . $(VIRTUALENV_DIR ) /bin/activate ; black $$(grep -rl '^#!/.*python' $$component/bin ) || exit 1; \
417
+ . $(VIRTUALENV_DIR ) /bin/activate ; black --config pyproject.toml $$(grep -rl '^#!/.*python' $$component/bin ) || exit 1; \
418
418
done
419
419
. $(VIRTUALENV_DIR ) /bin/activate; black --config pyproject.toml contrib/ || exit 1;
420
420
. $(VIRTUALENV_DIR ) /bin/activate; black --config pyproject.toml scripts/* .py || exit 1;
You can’t perform that action at this time.
0 commit comments