Skip to content

Commit

Permalink
Pull request: Fix codspell path
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Aug 13, 2024
1 parent 6abe43c commit 2e843bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github_app_geo_project/module/pull_request/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 2e843bb

Please sign in to comment.