From feae20d8faa3396f72aab02a5eafbdbbaab8305c Mon Sep 17 00:00:00 2001 From: Richard Beales Date: Wed, 17 May 2023 05:24:57 +0100 Subject: [PATCH] Update PULL_REQUEST_TEMPLATE.md to include linting (#3625) Co-authored-by: Nicholas Tindle --- .github/PULL_REQUEST_TEMPLATE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 273275b30b7f..90b985c1994c 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -35,7 +35,8 @@ By following these guidelines, your PRs are more likely to be merged quickly aft - [ ] I have thoroughly tested my changes with multiple different prompts. - [ ] I have considered potential risks and mitigations for my changes. - [ ] I have documented my changes clearly and comprehensively. -- [ ] I have not snuck in any "extra" small tweaks changes +- [ ] I have not snuck in any "extra" small tweaks changes. +- [ ] I have run `black .` and `isort .` against my code to ensure it passes our linter.