File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,16 @@ set -o errexit
44set -o nounset
55set -o pipefail
66
7- black --check .
8- isort --check .
9- flake8
10- mypy .
7+ python -m black --check .
8+ python -m isort --check .
9+ python -m flake8
10+ python -m mypy .
1111
1212NOTEBOOKS=" ./examples/*.ipynb" # ./examples/dev/*.ipynb"
1313for f in $NOTEBOOKS
1414do
1515 NB=$( cat $f )
16- FORMATTED_NB=$( jupyter nbconvert \
16+ FORMATTED_NB=$( python -m jupyter nbconvert \
1717 --clear-output \
1818 --stdout \
1919 --ClearOutputPreprocessor.enabled=True \
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ set -o nounset
55set -o pipefail
66set -o xtrace
77
8- black .
9- isort .
10- jupyter nbconvert \
8+ python -m black .
9+ python -m isort .
10+ python -m jupyter nbconvert \
1111 --clear-output \
1212 --inplace \
1313 --ClearOutputPreprocessor.enabled=True \
You can’t perform that action at this time.
0 commit comments