From 60e3641665cd5c91421782d481c25a89cb61c6be Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Dec 2021 22:23:45 +0000 Subject: Automatically format code --- src/commands/info/userInfo.ts | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src/commands/info') 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; } } -- cgit