Exemplo n.º 1
0
 async def fullwidth(self, ctx: DogbotContext, *, text: clean_content):
     """AESTHETIC"""
     await ctx.send(text.upper().translate(FW_TRANSLATE))
Exemplo n.º 2
0
 async def upper(self, ctx, *, message: commands.clean_content):
     message = message.upper()
     await ctx.send(message)
Exemplo n.º 3
0
    async def upper(self, ctx, *, text: commands.clean_content):
        """Outputs text in uppercase letters."""

        output = await commands.clean_content().convert(ctx, text.upper())
        await ctx.send(output)