summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyomotoi <[email protected]>2022-07-19 12:01:32 +0800
committerKyomotoi <[email protected]>2022-07-19 12:01:32 +0800
commit66f07a48c69eb51aac8f6ec598136f2709b08890 (patch)
tree841b54b1c1c7df1c4cda11f0e9c7d37973dc21db
parentf9fe488a2b32bd262092a22b2476e75cfaa5f7c9 (diff)
downloadATRI-66f07a48c69eb51aac8f6ec598136f2709b08890.tar.gz
ATRI-66f07a48c69eb51aac8f6ec598136f2709b08890.tar.bz2
ATRI-66f07a48c69eb51aac8f6ec598136f2709b08890.zip
πŸš‘οΈ δΌ˜εŒ–θΎ“ε‡Ί
-rw-r--r--ATRI/plugins/anti_effort/__init__.py8
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)