Run isort with --profile black

This commit is contained in:
Michael Wolf
2024-09-06 14:15:25 -06:00
parent 44b129951e
commit a033dfbfee
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ if [[ $file_type == "javascript" || \
retval="$?"
success_retval=0
elif [[ $file_type == "python" ]]; then
out=$(pipx run black $file 2>/dev/null && pipx run isort $file 2>/dev/null)
out=$(pipx run black $file 2>/dev/null && pipx run isort --profile black $file 2>/dev/null)
retval="$?"
success_retval=0
elif [[ $file_type == "golang" ]] ; then