Skip to content
Snippets Groups Projects
Unverified Commit 8d1dd078 authored by jrmylow's avatar jrmylow Committed by GitHub
Browse files

CI: Use sys.executable instead of "python" in subprocess (#57220)

parent b51c38ae
No related branches found
No related tags found
No related merge requests found
...@@ -188,7 +188,7 @@ class PandasDocstring(Validator): ...@@ -188,7 +188,7 @@ class PandasDocstring(Validator):
file.write(content) file.write(content)
file.flush() file.flush()
cmd = [ cmd = [
"python", sys.executable,
"-m", "-m",
"flake8", "flake8",
"--format=%(row)d\t%(col)d\t%(code)s\t%(text)s", "--format=%(row)d\t%(col)d\t%(code)s\t%(text)s",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment