From 0bb0d99aa4ffcc9c1b51801f2504d46ab0f9dfaa Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Wed, 23 Nov 2022 18:36:16 -0300 Subject: [PATCH] pre-commit: Fix pycqa pre-commit repos. The pycqa pre-commit repos were using 'gitlab.com', instead of 'github.com', which is, today, the correct repository to use. This patch fixes the addresses for Flake8 and pydocstyle checks. --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ac4b3d13..da62f85f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,11 +15,11 @@ repos: hooks: - id: yamllint files: \.(yaml|yml)$ -- repo: https://gitlab.com/pycqa/flake8 +- repo: https://github.com/pycqa/flake8 rev: 3.9.2 hooks: - id: flake8 -- repo: https://gitlab.com/pycqa/pydocstyle +- repo: https://github.com/pycqa/pydocstyle rev: 6.1.1 hooks: - id: pydocstyle -- GitLab