From 80122c9bba83770995260bf0d6cdda7dd3f576be Mon Sep 17 00:00:00 2001 From: vylpes Date: Wed, 28 Oct 2020 17:54:40 +0000 Subject: [PATCH] Fix hound violations --- src/client/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/util.js b/src/client/util.js index 632d7f6..ec42570 100644 --- a/src/client/util.js +++ b/src/client/util.js @@ -10,7 +10,7 @@ class util { for (let c = 0; c < this._client.config.commands.length; c++) { let folder = this._client.config.commands[c]; - stat(`${process.cwd()}/${folder}/${name}.js`, (err) => { + stat(`${process.cwd()}/${folder}/${name}.js`, err => { if (err == null) { let commandFile = require(`${process.cwd()}/${folder}/${name}.js`); let command = new commandFile();