diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-05 18:48:38 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-05 18:48:38 -0400 |
commit | 2d66c896b9ab7fac426061fccd6ffa413242bc6a (patch) | |
tree | 0315533b233d9f3f74615c8959a621e54b8747b6 /src/commands/utilities/uuid.ts | |
parent | f4ed3141722719f26ac2286d57a92b1031accaf3 (diff) | |
download | tanzanite-2d66c896b9ab7fac426061fccd6ffa413242bc6a.tar.gz tanzanite-2d66c896b9ab7fac426061fccd6ffa413242bc6a.tar.bz2 tanzanite-2d66c896b9ab7fac426061fccd6ffa413242bc6a.zip |
remove explicit any and add error for code block
Diffstat (limited to 'src/commands/utilities/uuid.ts')
-rw-r--r-- | src/commands/utilities/uuid.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/commands/utilities/uuid.ts b/src/commands/utilities/uuid.ts index 06856d9..50280a0 100644 --- a/src/commands/utilities/uuid.ts +++ b/src/commands/utilities/uuid.ts @@ -28,7 +28,6 @@ export default class UuidCommand extends BushCommand { }); } - // eslint-disable-next-line @typescript-eslint/no-explicit-any public override async exec(message: BushMessage, { ign }: { ign: { match: any[]; matches: any[] } }): Promise<unknown> { if (!ign) return await message.util.reply(`${util.emojis.error} Please enter a valid ign.`); const readableIGN = ign.match[0]; |