From 337623bf9182c0cf9dd2c576ebf7c8841ddb5165 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 11 Oct 2020 20:45:45 +0000 Subject: [PATCH] Format code with prettier This commit fixes the style issues introduced in 8193ddc according to the output from prettier. Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/733b53d9-e4de-4863-b23b-144fe163d3c7/ --- app/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.js b/app/index.js index 1869ae7..04f6ee2 100644 --- a/app/index.js +++ b/app/index.js @@ -235,7 +235,7 @@ module.exports.getGameData = async function (name, includeMods) { let result = []; for (let info of await Promise.all(promiseList)) { // Skip mods if not required - if(!info) continue; + if (!info) continue; if (info.isMod && !includeMods) continue; else result.push(info); }