From 66cadc4ad2eed946378ced142c412af604065065 Mon Sep 17 00:00:00 2001 From: Emanuel Ferreira Date: Wed, 27 Sep 2023 16:06:59 -0300 Subject: [PATCH] fix: remove isort due using black and add a new checklist (#546) fix: remove isort due using black and add a new checklist --- .github/pull_request_template.md | 3 ++- Makefile | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 19af2e20fc..7face3fa3c 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -29,4 +29,5 @@ Please describe the tests that you ran to verify your changes. Provide instructi - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works -- [ ] New and existing unit tests pass locally with my changes \ No newline at end of file +- [ ] New and existing unit tests pass locally with my changes +- [ ] I ran `make format; make lint` to appease the lint gods \ No newline at end of file diff --git a/Makefile b/Makefile index f95f77780b..0aaa83bcbe 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,6 @@ format: black . - isort . - lint: ruff check . black --check .