diff options
author | Kyomotoi <[email protected]> | 2022-07-19 12:01:32 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2022-07-19 12:01:32 +0800 |
commit | 66f07a48c69eb51aac8f6ec598136f2709b08890 (patch) | |
tree | 841b54b1c1c7df1c4cda11f0e9c7d37973dc21db | |
parent | f9fe488a2b32bd262092a22b2476e75cfaa5f7c9 (diff) | |
download | ATRI-66f07a48c69eb51aac8f6ec598136f2709b08890.tar.gz ATRI-66f07a48c69eb51aac8f6ec598136f2709b08890.tar.bz2 ATRI-66f07a48c69eb51aac8f6ec598136f2709b08890.zip |
ποΈ δΌεθΎεΊ
-rw-r--r-- | ATRI/plugins/anti_effort/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
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) |