Fix python imports and replace const char array with constexpr

This commit is contained in:
Kostas Kyrimis
2022-11-28 17:13:58 +02:00
parent 8fd7327fbd
commit 50df0d4d53
4 changed files with 12 additions and 8 deletions

View File

@@ -99,7 +99,7 @@ jobs:
echo ${file}
if [[ ${file} == *.py ]]; then
python3 -m black --check --diff ${file}
python3 -m isort --check-only --diff ${file}
python3 -m isort --check-only --profile "black" --diff ${file}
fi
done