Skip to content

Commit 04ed0a1

Browse files
committed
chore(devtool): fix black command in cmd_fmt
The cmd_fmt wouldn't format like the CI test would like it. This commit fixes the issue. Signed-off-by: Riccardo Mancini <[email protected]>
1 parent a9106ae commit 04ed0a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/devtool

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ cmd_test_debug() {
944944
cmd_fmt() {
945945
cmd_sh "cargo fmt --all -- --config $(tr '\n' ',' <tests/fmt.toml)"
946946
cmd_sh "cargo sort"
947-
cmd_sh "cd tests; black . ../tools ../.buildkite"
947+
cmd_sh "cd tests; black --config pyproject.toml . ../tools ../.buildkite"
948948
cmd_sh "cd tests; isort . ../tools ../.buildkite"
949949
cmd_sh "mdformat $(git ls-files '*.md' | tr '\n' ' ')"
950950
}

0 commit comments

Comments
 (0)