From 74d1131548ffd3e2a0b36b5f86f5d49aa9cca9a0 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 3 Oct 2018 23:01:23 +0000 Subject: [PATCH] Fix lint --- commands/single/dark-theme-light-theme.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/single/dark-theme-light-theme.js b/commands/single/dark-theme-light-theme.js index 39916f76..734c1739 100644 --- a/commands/single/dark-theme-light-theme.js +++ b/commands/single/dark-theme-light-theme.js @@ -27,8 +27,8 @@ module.exports = class DarkThemeLightThemeCommand extends Command { } run(msg, { type }) { - return msg.say({ files: [ - path.join(__dirname, '..', '..', 'assets', 'images', 'dark-theme-light-theme', `${type}.png`) - ] }); + return msg.say({ + files: [path.join(__dirname, '..', '..', 'assets', 'images', 'dark-theme-light-theme', `${type}.png`)] + }); } };