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`)] + }); } };