From ad3fd1eb65f17e70534a0787b61d6a932d33ec67 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 24 Nov 2020 17:17:23 -0500 Subject: [PATCH] Fix lint --- commands/analyze/parse-time.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/analyze/parse-time.js b/commands/analyze/parse-time.js index dac224ed..5cc70c96 100644 --- a/commands/analyze/parse-time.js +++ b/commands/analyze/parse-time.js @@ -19,7 +19,7 @@ module.exports = class ParseTimeCommand extends Command { }); } - async run(msg, { time }) { + run(msg, { time }) { const timeMs = time.startDate.getTime() - Date.now(); const display = moment().add(timeMs, 'ms').fromNow(); return msg.say(`This time duration parses as **${display}**.`);