From 1926795c8ca3a4be418f45b0b9c2689e2ab3f396 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Mon, 31 Oct 2022 23:29:57 +0100 Subject: [PATCH] pre-commit: enable isort --- .pre-commit-config.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 42d13f19..8bd52ff2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -32,14 +32,15 @@ repos: - --target-version=py38 - --target-version=py39 - --target-version=py310 + - --target-version=py311 - # # Autoformat: Python code - # - repo: https://github.com/pycqa/isort - # rev: 5.10.1 - # hooks: - # - id: isort - # args: - # - --profile=black + # Autoformat: Python code + - repo: https://github.com/pycqa/isort + rev: 5.10.1 + hooks: + - id: isort + args: + - --profile=black # # Autoformat: markdown, yaml (but not helm templates) # - repo: https://github.com/pre-commit/mirrors-prettier