Skip to content

Commit

Permalink
Lintrunner to use python3 by default (#275)
Browse files Browse the repository at this point in the history
Instead of `python` which might be missing. Followup after #268
  • Loading branch information
malfet authored Apr 18, 2024
1 parent b24979a commit 97a049d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .lintrunner.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ merge_base_with = "origin/main"
code = 'FLAKE8'
include_patterns = ['**/*.py']
command = [
'python',
'python3',
'-m',
'lintrunner_adapters',
'run',
Expand All @@ -13,7 +13,7 @@ command = [
'@{{PATHSFILE}}'
]
init_command = [
'python',
'python3',
'-m',
'lintrunner_adapters',
'run',
Expand All @@ -30,7 +30,7 @@ include_patterns = [
'**/*.pyi',
]
command = [
'python',
'python3',
'-m',
'lintrunner_adapters',
'run',
Expand All @@ -39,7 +39,7 @@ command = [
'@{{PATHSFILE}}'
]
init_command = [
'python',
'python3',
'-m',
'lintrunner_adapters',
'run',
Expand All @@ -58,7 +58,7 @@ include_patterns = [
'**/*.cpp',
]
command = [
'python',
'python3',
'-m',
'lintrunner_adapters',
'run',
Expand All @@ -69,7 +69,7 @@ command = [
'@{{PATHSFILE}}'
]
init_command = [
'python',
'python3',
'-m',
'lintrunner_adapters',
'run',
Expand Down

0 comments on commit 97a049d

Please sign in to comment.