aboutsummaryrefslogtreecommitdiff
path: root/src/commands/info/userInfo.ts
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-12-26 22:23:45 +0000
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-12-26 22:23:45 +0000
commit60e3641665cd5c91421782d481c25a89cb61c6be (patch)
treec900b2ff20c9606d707371d49df6a3c18b16673d /src/commands/info/userInfo.ts
parent4990d33a22779b524ff6476bb05fcc21cad4eace (diff)
downloadtanzanite-60e3641665cd5c91421782d481c25a89cb61c6be.tar.gz
tanzanite-60e3641665cd5c91421782d481c25a89cb61c6be.tar.bz2
tanzanite-60e3641665cd5c91421782d481c25a89cb61c6be.zip
Automatically format code
Diffstat (limited to 'src/commands/info/userInfo.ts')
-rw-r--r--src/commands/info/userInfo.ts11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/commands/info/userInfo.ts b/src/commands/info/userInfo.ts
index c62be93..98ead3d 100644
--- a/src/commands/info/userInfo.ts
+++ b/src/commands/info/userInfo.ts
@@ -1,11 +1,4 @@
-import {
- BushCommand,
- BushGuild,
- BushGuildMember,
- type BushMessage,
- type BushSlashMessage,
- type BushUser
-} from '#lib';
+import { BushCommand, BushGuild, BushGuildMember, type BushMessage, type BushSlashMessage, type BushUser } from '#lib';
import { MessageEmbed, type Snowflake } from 'discord.js';
// TODO: Add bot information
@@ -177,6 +170,6 @@ export default class UserInfoCommand extends BushCommand {
if (perms.length) userEmbed.addField('ยป Important Perms', perms.join(' '));
if (emojis) userEmbed.setDescription(`\u200B${emojis.join(' ')}`); // zero width space
- return userEmbed
+ return userEmbed;
}
}