Skip to content

Commit

Permalink
style: fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-liang3 committed Jan 23, 2025
1 parent ba2d82f commit b73a22a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tools/development/helpers/check-format-cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pushd "${project_directory}" > /dev/null
clang-format -Werror --dry-run -style=file:thirdparty/clang/.clang-format $(find ~+ src/ include/ test/ bindings/python/src/ -name '*.cpp' -o -name '*.cxx' -o -name '*.hpp' -o -name '*.tpp') \
|| exit 1

popd > /dev/null
popd > /dev/null
2 changes: 1 addition & 1 deletion tools/development/helpers/check-format-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pushd "${project_directory}" > /dev/null
python${OSTK_PYTHON_VERSION} -m black --check --diff bindings/python/ \
|| exit 1

popd > /dev/null
popd > /dev/null
2 changes: 1 addition & 1 deletion tools/development/helpers/format-cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pushd "${project_directory}" > /dev/null
clang-format -i -style=file:thirdparty/clang/.clang-format $(find ~+ src/ include/ test/ bindings/python/src/ -name '*.cpp' -o -name '*.cxx' -o -name '*.hpp' -o -name '*.tpp') \
|| exit 1

popd > /dev/null
popd > /dev/null
2 changes: 1 addition & 1 deletion tools/development/helpers/format-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pushd "${project_directory}" > /dev/null
python${OSTK_PYTHON_VERSION} -m black bindings/python/ \
|| exit 1

popd > /dev/null
popd > /dev/null
2 changes: 1 addition & 1 deletion tools/development/helpers/test-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ pushd "${test_directory}" > /dev/null
python${OSTK_PYTHON_VERSION} -m pytest -sv ${@} \
|| exit 1

popd > /dev/null
popd > /dev/null

0 comments on commit b73a22a

Please sign in to comment.