From 2e843bb9519aee729af3ef83ff07619d52554532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Tue, 13 Aug 2024 10:28:15 +0200 Subject: [PATCH] Pull request: Fix codspell path --- github_app_geo_project/module/pull_request/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github_app_geo_project/module/pull_request/checks.py b/github_app_geo_project/module/pull_request/checks.py index 02cfd997a9..a71f975428 100644 --- a/github_app_geo_project/module/pull_request/checks.py +++ b/github_app_geo_project/module/pull_request/checks.py @@ -37,7 +37,7 @@ def _get_code_spell_command( config = context.module_config code_spell_config = config.get("codespell", {}) code_spell_config = code_spell_config if isinstance(code_spell_config, dict) else {} - command = ["/usr/local/bin/codespell"] + command = ["/venv/bin/codespell"] for spell_ignore_file in ( ".github/spell-ignore-words.txt", "spell-ignore-words.txt",