From 1bc4129a4140b0bcdad32302332814257dc30c2a Mon Sep 17 00:00:00 2001 From: Luke Date: Tue, 8 Oct 2019 01:48:31 +0100 Subject: [PATCH] More suggestions from code review --- disco/api/client.py | 2 +- disco/api/http.py | 2 +- disco/types/guild.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/disco/api/client.py b/disco/api/client.py index 86a161d..e1ca1f7 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -438,7 +438,7 @@ class APIClient(LoggingClass): return PruneCount.create(self.client, r.json()) def guilds_prune_create(self, guild, days=None, compute_prune_count=None): - r = self.http(Routes.GUILDS_PRUNE_BEGIN, dict(guild=guild), params=optional( + r = self.http(Routes.GUILDS_PRUNE_CREATE, dict(guild=guild), params=optional( days=days, compute_prune_count=compute_prune_count, )) diff --git a/disco/api/http.py b/disco/api/http.py index 7ca3dac..a035ccf 100644 --- a/disco/api/http.py +++ b/disco/api/http.py @@ -89,7 +89,7 @@ class Routes(object): GUILDS_ROLES_MODIFY = (HTTPMethod.PATCH, GUILDS + '/roles/{role}') GUILDS_ROLES_DELETE = (HTTPMethod.DELETE, GUILDS + '/roles/{role}') GUILDS_PRUNE_COUNT = (HTTPMethod.GET, GUILDS + '/prune') - GUILDS_PRUNE_BEGIN = (HTTPMethod.POST, GUILDS + '/prune') + GUILDS_PRUNE_CREATE = (HTTPMethod.POST, GUILDS + '/prune') GUILDS_VOICE_REGIONS_LIST = (HTTPMethod.GET, GUILDS + '/regions') GUILDS_VANITY_URL_GET = (HTTPMethod.GET, GUILDS + '/vanity-url') GUILDS_INVITES_LIST = (HTTPMethod.GET, GUILDS + '/invites') diff --git a/disco/types/guild.py b/disco/types/guild.py index a67117d..e7c16a7 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -425,7 +425,7 @@ class Guild(SlottedModel, Permissible): return self.client.api.guilds_prune_count_get(self.id, days=days) def prune(self, days=None, compute_prune_count=None): - return self.client.api.guilds_prune(self.id, days=days, compute_prune_count=compute_prune_count) + return self.client.api.guilds_prune_create(self.id, days=days, compute_prune_count=compute_prune_count) def create_role(self, **kwargs): """ @@ -534,7 +534,7 @@ class Guild(SlottedModel, Permissible): return self.client.api.guilds_emojis_get(self.id, emoji) def get_voice_regions(self): - return self.client.api.guilds_regions_list(self.id) + return self.client.api.guilds_voice_regions_list(self.id) def get_icon_url(self, still_format='webp', animated_format='gif', size=1024): if not self.icon: