Add --profile black to isort in GH action

This commit is contained in:
Jeremy Singer-Vine
2022-05-06 13:31:39 -04:00
parent feb9d082d7
commit 0c4a9e5ec3
+1 -1
View File
@@ -30,7 +30,7 @@ jobs:
run: python -m black --check pdfplumber tests
- name: Validate against isort
run: python -m isort --check-only pdfplumber tests
run: python -m isort --profile black --check-only pdfplumber tests
- name: Validate against flake8
run: python -m flake8 pdfplumber tests