From 7ca89963a67672d077eb07ede4a73aab21a672b1 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 15 Dec 2020 17:37:18 -0500 Subject: [PATCH] Fix lint --- commands/edit-number/math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-number/math.js b/commands/edit-number/math.js index a04ca1d9..50204fea 100644 --- a/commands/edit-number/math.js +++ b/commands/edit-number/math.js @@ -20,7 +20,7 @@ module.exports = class MathCommand extends Command { } run(msg, { expression }) { - try { + try { const evaluated = Parser.evaluate(expression).toString(); return msg.reply(evaluated).catch(() => msg.reply('Invalid expression.')); } catch {