Skip to content

Commit 8c0611b

Browse files
authored
Updated black version (#195)
1 parent 5954335 commit 8c0611b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ To add a new template,
113113

114114
```sh
115115
# install code formatting dependencies
116-
bash .github/run_code_style.sh install
116+
bash scripts/run_code_style.sh install
117117
# format the codes
118-
bash .github/run_code_style.sh fmt
118+
bash scripts/run_code_style.sh fmt
119119
# lint the codes
120-
bash .github/run_code_style.sh lint
120+
bash scripts/run_code_style.sh lint
121121
```
122122

123123
_NOTE: Even if you have a half-completed/working PR, sending a PR is still a valid contribution and we can help you finish the PR._

scripts/run_code_style.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ elif [ $1 == "fmt" ]; then
1010
isort . --profile black
1111
black . -l 80
1212
elif [ $1 == "install" ]; then
13-
pip install "black==20.8b1" "isort==5.7.0" flake8
13+
pip install "black==21.12b0" "isort==5.7.0" flake8
1414
fi

0 commit comments

Comments
 (0)