Commit from GitHub Actions (Lint)

This commit is contained in:
Skillz4Killz
2021-05-01 12:20:26 +00:00
parent 1637ca84b2
commit f6b4528d2c
5 changed files with 12 additions and 7 deletions
+4 -1
View File
@@ -12,5 +12,8 @@ export async function getWidget(guildId: string, options?: { force: boolean }) {
if (!guild?.widgetEnabled) throw new Error(Errors.GUILD_WIDGET_NOT_ENABLED);
}
return await rest.runMethod<GuildWidgetDetails>("get", `${endpoints.GUILD_WIDGET(guildId)}.json`);
return await rest.runMethod<GuildWidgetDetails>(
"get",
`${endpoints.GUILD_WIDGET(guildId)}.json`,
);
}