From 68aab284080fdfccd6145543ce8e36436b045814 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 23 Apr 2021 08:38:19 -0400 Subject: [PATCH] Fix lint --- commands/edit-number/currency.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-number/currency.js b/commands/edit-number/currency.js index e828f71d..d59c70bb 100644 --- a/commands/edit-number/currency.js +++ b/commands/edit-number/currency.js @@ -52,7 +52,7 @@ module.exports = class CurrencyCommand extends Command { try { const rate = await this.fetchRate(base, target); const baseName = this.currencies[base]; - const targetName = this.currencies[target] + const targetName = this.currencies[target]; return msg.say(`${formatNumber(amount)} ${baseName} is ${formatNumber(amount * rate)} ${targetName}.`); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);