Skip to content

Commit

Permalink
進数変換コマンド実装v3
Browse files Browse the repository at this point in the history
  • Loading branch information
Syunngiku0402 committed Nov 15, 2024
1 parent cde6f8c commit cc3a611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/cradix.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(self, bot: commands.Bot):

@app_commands.command(name="cradix", description="入力した数値を2~16進数に変換します")
@app_commands.describe(num="進数変換したい数字を入れてください")
async def cybase64(self, interaction: discord.Interaction, num: int):
async def cradix(self, interaction: discord.Interaction, num: int):
absnum = abs(num)
DESCRIPTION = f"""
```
Expand Down

0 comments on commit cc3a611

Please sign in to comment.