Skip to content

Commit

Permalink
進数変換コマンド実装v5
Browse files Browse the repository at this point in the history
  • Loading branch information
Syunngiku0402 committed Nov 18, 2024
1 parent 7d9b5c0 commit 28be522
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cogs/cradix.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ async def cradix(self, interaction: discord.Interaction, num: int, mode: Optiona
28進数 : {np.base_repr(absnum, 28)}
29進数 : {np.base_repr(absnum, 29)}
30進数 : {np.base_repr(absnum, 30)}
30進数 : {np.base_repr(absnum, 31)}
30進数 : {np.base_repr(absnum, 32)}
30進数 : {np.base_repr(absnum, 33)}
30進数 : {np.base_repr(absnum, 34)}
30進数 : {np.base_repr(absnum, 35)}
30進数 : {np.base_repr(absnum, 36)}
31進数 : {np.base_repr(absnum, 31)}
32進数 : {np.base_repr(absnum, 32)}
33進数 : {np.base_repr(absnum, 33)}
34進数 : {np.base_repr(absnum, 34)}
35進数 : {np.base_repr(absnum, 35)}
36進数 : {np.base_repr(absnum, 36)}
```
"""
radix_embed1 = discord.Embed(
Expand Down

0 comments on commit 28be522

Please sign in to comment.