diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-05 23:15:35 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-05 23:15:35 -0400 |
commit | 060349fcabe9e073eca9f6fd334e3355a9756096 (patch) | |
tree | db3af995850adb1ae3078c0aebaf81642dcaaca9 /src/commands/utilities/highlight-block.ts | |
parent | 904ee80b50148317c0edaf71395a86138833ed7e (diff) | |
download | tanzanite-060349fcabe9e073eca9f6fd334e3355a9756096.tar.gz tanzanite-060349fcabe9e073eca9f6fd334e3355a9756096.tar.bz2 tanzanite-060349fcabe9e073eca9f6fd334e3355a9756096.zip |
use assert/strict
Diffstat (limited to 'src/commands/utilities/highlight-block.ts')
-rw-r--r-- | src/commands/utilities/highlight-block.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/utilities/highlight-block.ts b/src/commands/utilities/highlight-block.ts index 9ee8a5a..7843836 100644 --- a/src/commands/utilities/highlight-block.ts +++ b/src/commands/utilities/highlight-block.ts @@ -1,5 +1,5 @@ import { AllowedMentions, BushCommand, emojis, type ArgType, type CommandMessage, type SlashMessage } from '#lib'; -import assert from 'assert'; +import assert from 'assert/strict'; import { Argument, ArgumentGeneratorReturn } from 'discord-akairo'; import { Channel, GuildMember, User } from 'discord.js'; import { BlockResult } from '../../lib/common/HighlightManager.js'; |