Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dsame committed May 4, 2022
1 parent e31727c commit 8f73c14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/setup/index.js
Expand Up @@ -6113,7 +6113,7 @@ function run() {
}
}
else {
core.warning("Step input 'python-version' is not set, the OS native python version will be used");
core.warning('The `python-version` input is not set. The version of Python currently in `PATH` will be used.');
}
const matchersPath = path.join(__dirname, '../..', '.github');
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
Expand Down
2 changes: 1 addition & 1 deletion src/setup-python.ts
Expand Up @@ -55,7 +55,7 @@ async function run() {
}
} else {
core.warning(
"The `python-version` input is not set. The version of Python currently in `PATH` will be used."
'The `python-version` input is not set. The version of Python currently in `PATH` will be used.'
);
}
const matchersPath = path.join(__dirname, '../..', '.github');
Expand Down

0 comments on commit 8f73c14

Please sign in to comment.