From 0c4a9e5ec3b4349e2b2e04a9c33975f06fbca3b2 Mon Sep 17 00:00:00 2001 From: Jeremy Singer-Vine Date: Fri, 6 May 2022 13:31:39 -0400 Subject: [PATCH] Add `--profile black` to isort in GH action --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 51af4a3..0e1563e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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