Skip to content

Commit

Permalink
Update isort settings file path in fix_all.sh (#1855)
Browse files Browse the repository at this point in the history
Update `isort` settings file path in `fix_all.sh` to `${PROJ_TOML}` so that this script finds the config path correctly. 

This is a follow-up PR of #1854.

## By Submitting this PR I confirm:
- I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md).
- When the PR is ready for review, new or existing tests cover these changes.
- When the PR is ready for review, the documentation is up to date with these changes.

Authors:
  - Yuchen Zhang (https://github.com/yczhang-nv)

Approvers:
  - David Gardner (https://github.com/dagardner-nv)
  - Anuradha Karuppiah (https://github.com/AnuradhaKaruppiah)

URL: #1855
  • Loading branch information
yczhang-nv committed Aug 21, 2024
1 parent 563afcc commit 44f4d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/fix_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ fi
# Run isort
if [[ "${SKIP_ISORT}" == "" ]]; then
echo "Running isort..."
python3 -m isort --settings-file ${PY_CFG} ${PY_MODIFIED_FILES[@]} 2>&1
python3 -m isort --settings-file ${PROJ_TOML} ${PY_MODIFIED_FILES[@]} 2>&1
fi

# Run yapf
Expand Down

0 comments on commit 44f4d62

Please sign in to comment.