From e92ad8d45bc515b802cd44fbbc64717936aab827 Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Tue, 26 Apr 2022 11:05:31 +0200 Subject: [PATCH] run lint command --- dist/setup/index.js | 2 +- src/setup-python.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index b6c873b8..baa759dc 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -6113,7 +6113,7 @@ function run() { } } else { - throw new Error('there\'s empty python-version input'); + throw new Error("there's empty python-version input"); } const matchersPath = path.join(__dirname, '../..', '.github'); core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`); diff --git a/src/setup-python.ts b/src/setup-python.ts index 3340a86e..6b3ae1da 100644 --- a/src/setup-python.ts +++ b/src/setup-python.ts @@ -54,7 +54,7 @@ async function run() { await cacheDependencies(cache, pythonVersion); } } else { - throw new Error('there\'s empty python-version input') + throw new Error("there's empty python-version input"); } const matchersPath = path.join(__dirname, '../..', '.github'); core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);