From bb6319cd7e4b67afaa801ef20d7add13b4af905d Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 23 Mar 2018 22:38:18 +0000 Subject: [PATCH] Fix lint --- commands/search/urban-dictionary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/urban-dictionary.js b/commands/search/urban-dictionary.js index cbce67e5..0f16fc40 100644 --- a/commands/search/urban-dictionary.js +++ b/commands/search/urban-dictionary.js @@ -1,7 +1,7 @@ const { Command } = require('discord.js-commando'); const { MessageEmbed } = require('discord.js'); const snekfetch = require('snekfetch'); -const { shorten, list } = require('../../util/Util'); +const { shorten } = require('../../util/Util'); const types = ['random', 'top']; module.exports = class UrbanDictionaryCommand extends Command {