From e9423a0d7f3da38c13592742632eb891f9574769 Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Sat, 2 Jan 2021 19:04:47 -0500 Subject: [PATCH] style: reorder checks --- .pre-commit-config.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9e9695f6..7a90bf34 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,10 +1,4 @@ repos: -- repo: https://gitlab.com/pycqa/flake8 - rev: 3.8.4 - hooks: - - id: flake8 - exclude: cibuildwheel/resources/ - additional_dependencies: [flake8-bugbear] - repo: https://github.com/pre-commit/pre-commit-hooks rev: v3.4.0 @@ -29,3 +23,10 @@ repos: hooks: - id: pyupgrade args: ["--py36-plus"] + +- repo: https://gitlab.com/pycqa/flake8 + rev: 3.8.4 + hooks: + - id: flake8 + exclude: cibuildwheel/resources/ + additional_dependencies: [flake8-bugbear]