From 66f07a48c69eb51aac8f6ec598136f2709b08890 Mon Sep 17 00:00:00 2001 From: Kyomotoi <0w0@imki.moe> Date: Tue, 19 Jul 2022 12:01:32 +0800 Subject: =?UTF-8?q?=F0=9F=9A=91=EF=B8=8F=20=E4=BC=98=E5=8C=96=E8=BE=93?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/anti_effort/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ATRI/plugins') diff --git a/ATRI/plugins/anti_effort/__init__.py b/ATRI/plugins/anti_effort/__init__.py index fe8e72a..66bf8b4 100644 --- a/ATRI/plugins/anti_effort/__init__.py +++ b/ATRI/plugins/anti_effort/__init__.py @@ -85,8 +85,8 @@ async def _check_rank_today(event: GroupMessageEvent): ] table.insert(0, ["Rank", "Member", "Today"]) result = tabulate(table, tablefmt="plain") - now_time = datetime.now().strftime("%Y/%m/%d - %H:%M:%S") - repo = f"《今日卷王》 单位: 小时\nDate: {now_time}\n{result}" + now_time = datetime.now().strftime("%Y/%m/%d") + repo = f"《今日卷王》 单位: 小时\nRank Date: {now_time}\n{result}" await check_rank_today.finish(repo) @@ -119,6 +119,6 @@ async def _check_rank_recent_week(event: GroupMessageEvent): ] table.insert(0, ["Rank", "Member", "Last 7 Days"]) result = tabulate(table, tablefmt="plain") - now_time = datetime.now().strftime("%Y/%m/%d - %H:%M:%S") - repo = f"《近一周卷王》 单位: 小时\nDate: {now_time}\n{result}" + now_time = datetime.now().strftime("%Y/%m/%d") + repo = f"《近一周卷王》 单位: 小时\nRank Date: {now_time}\n{result}" await check_rank_recent_week.finish(repo) -- cgit v1.2.3