Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
code style change
Browse files Browse the repository at this point in the history
  • Loading branch information
kvsxxx committed Dec 10, 2021
1 parent 7100dc1 commit 1d0fd88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord_ui/slash/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async def delete_guild_commands(self, guild_id):
try:
commands = await self._http.request(BetterRoute("GET", f"/applications/{self.application_id}/guilds/{guild_id}/commands"))
for x in commands:
await self.delete_guild_command( x["id"], guild_id)
await self.delete_guild_command(x["id"], guild_id)
except Forbidden:
logging.warn("got forbidden in " + str(guild_id))

Expand Down

0 comments on commit 1d0fd88

Please sign in to comment.