From ba8aa967ff52728f73a0136e537f6d5bb32a28d7 Mon Sep 17 00:00:00 2001
From: Antoine Lambert <antoine.lambert@inria.fr>
Date: Thu, 17 Sep 2020 13:52:43 +0200
Subject: [PATCH] pre-commit: Update flake8 hook configuration

flake8 hook has been removed from https://github.com/pre-commit/pre-commit-hooks
so now use the one from https://gitlab.com/pycqa/flake8
---
 .pre-commit-config.yaml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 5aaa4c11..5ab0e08d 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -3,10 +3,14 @@ repos:
   rev: v2.4.0
   hooks:
   - id: trailing-whitespace
-  - id: flake8
   - id: check-json
   - id: check-yaml
 
+- repo: https://gitlab.com/pycqa/flake8
+  rev: 3.8.3
+  hooks:
+  - id: flake8
+
 - repo: https://github.com/codespell-project/codespell
   rev: v1.16.0
   hooks:
-- 
GitLab