Browse Source

More suggestions from code review

pull/153/head
Luke 6 years ago
parent
commit
1bc4129a41
  1. 2
      disco/api/client.py
  2. 2
      disco/api/http.py
  3. 4
      disco/types/guild.py

2
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,
))

2
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')

4
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:

Loading…
Cancel
Save