diff --git a/client.py b/client.py index a58fa4d..1f696aa 100644 --- a/client.py +++ b/client.py @@ -37,17 +37,17 @@ class Client(commands.CommandsClient): if x > y: message = randrange(y, x + 1) - await ctx.send(f"**{str(message)}** `({y};{x})`") + await ctx.send(f"**{message}** `({y};{x})`") return message = randrange(x, y + 1) - await ctx.send(f"**{str(message)}** `({x};{y})`") + await ctx.send(f"**{message}** `({x};{y})`") @commands.command() async def timestamp(self, ctx: commands.Context): """Shows current timestamp""" message = trunc(time()) - await ctx.send(str(message)) + await ctx.send(f"**{message}** ") @commands.command() async def self(self, ctx: commands.Context):