From a3d0c02d679e032078f57a2d6e91553813c0fa6a Mon Sep 17 00:00:00 2001 From: Skillz Date: Fri, 13 Nov 2020 12:24:04 -0500 Subject: [PATCH] fmt --- src/handlers/guild.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/handlers/guild.ts b/src/handlers/guild.ts index a0865d759..47385b112 100644 --- a/src/handlers/guild.ts +++ b/src/handlers/guild.ts @@ -617,5 +617,8 @@ export function getUser(userID: string) { * So it does not cache the guild, you must do it manually. * */ export function getGuild(guildID: string, counts = true) { - return RequestManager.get(endpoints.GUILD(guildID), { with_counts: counts }) as Promise + return RequestManager.get( + endpoints.GUILD(guildID), + { with_counts: counts }, + ) as Promise; }