From 16a0e22493bd8feafdfe57f6af03fe55c5a86e61 Mon Sep 17 00:00:00 2001 From: ARYAN-NIKNEZHAD Date: Tue, 20 Aug 2024 16:32:04 +0430 Subject: [PATCH] :wrench: chore: fix pre-commit hooks Closes(#37) --- .pre-commit-config.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d170554..8a159b7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,17 +9,18 @@ repos: - id: check-merge-conflict - id: check-docstring-first + - repo: https://github.com/pre-commit/mirrors-isort + rev: v5.10.1 + hooks: + - id: isort + exclude: docs/ + - repo: https://github.com/psf/black rev: 23.3.0 hooks: - id: black exclude: docs/ - - repo: https://github.com/pre-commit/mirrors-isort - rev: v5.10.1 - hooks: - - id: isort - exclude: docs/ - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.991