mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-08 19:44:57 -05:00
fix(tools): another fix for format_python.sh after shellcheck changes
This commit is contained in:
@@ -37,9 +37,9 @@ do
|
||||
done
|
||||
|
||||
for SRC_DIR in "${DIRS[@]}"; do
|
||||
isort --profile black "${CHECK}" "${SRC_DIR}"
|
||||
isort --profile black ${CHECK:+"$CHECK"} "${SRC_DIR}"
|
||||
((FAILURES+=$?))
|
||||
black -l 100 "${CHECK}" "${SRC_DIR}"
|
||||
black -l 100 ${CHECK:+"$CHECK"} "${SRC_DIR}"
|
||||
((FAILURES+=$?))
|
||||
done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user