From 14bbc1f6e6eed1de4f9a63091bb929bd5c67f744 Mon Sep 17 00:00:00 2001 From: Colton Loftus <70598503+C-Loftus@users.noreply.github.com> Date: Tue, 7 May 2024 13:54:52 -0400 Subject: [PATCH] Update .pre-commit-config.yaml to fix precommit error Talonfmt requires Python 3.11 to be installed. This line fixes the precommit error and should make it pass. I tested this on the ai-tools repo and it passes now --- .pre-commit-config.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4d22e6c245..d00768d498 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -50,3 +50,4 @@ repos: hooks: - id: talonfmt args: ["--in-place"] + language_version: python3.11