diff --git a/client.py b/client.py index f382ee3..4c284a8 100644 --- a/client.py +++ b/client.py @@ -46,17 +46,15 @@ class Client(commands.CommandsClient): @commands.command() async def timestamp(self, ctx: commands.Context): """Shows current timestamp""" - message = trunc(time()) - await ctx.send(f"## {message}\n" + timestamp = trunc(time()) + table = str() + styles = ['d', 'D', 't', 'T', 'f', 'F', 'R'] + for style in styles: + table = table + f"\n| `` | |" + await ctx.send(f"## {timestamp}\n" f"| Chat syntax | Result |\n" - f"| --- | --- |\n" - f"| `` | |\n" - f"| `` | |\n" - f"| `` | |\n" - f"| `` | |\n" - f"| `` | |\n" - f"| `` | |\n" - f"| `` | |") + f"| --- | --- |" + + table) @commands.command() async def self(self, ctx: commands.Context):