diff options
author | Kyomotoi <[email protected]> | 2022-07-28 15:51:17 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2022-07-28 15:51:17 +0800 |
commit | f8d3f3b1e2c00b9c353f32aaa3fd448b8e9f715e (patch) | |
tree | 09424cfc33f8d69cf0ab014f6395f15cb546c1f8 | |
parent | 55ee0cea653db01b32e7ea3df5b3b4ca722efcae (diff) | |
download | ATRI-f8d3f3b1e2c00b9c353f32aaa3fd448b8e9f715e.tar.gz ATRI-f8d3f3b1e2c00b9c353f32aaa3fd448b8e9f715e.tar.bz2 ATRI-f8d3f3b1e2c00b9c353f32aaa3fd448b8e9f715e.zip |
🚸 优化用户体验
-rw-r--r-- | ATRI/plugins/anti_effort/data_source.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ATRI/plugins/anti_effort/data_source.py b/ATRI/plugins/anti_effort/data_source.py index 0074282..8141f09 100644 --- a/ATRI/plugins/anti_effort/data_source.py +++ b/ATRI/plugins/anti_effort/data_source.py @@ -246,7 +246,7 @@ class AntiEffort(Service): table.insert(0, ["Rank", "Member", table_type]) result = tabulate(table, tablefmt="plain") update_time = raw_data["update_time"] - rank = f"\n你位于第 {user_rank} 名: {user_recent_count}" if user_rank else str() + rank = f"\n你位于第 {user_rank} 名: {user_recent_count} hrs" if user_rank else str() repo = f"《{rank_type}十佳卷王》\nUpdate Time: {update_time}\n{result}{rank}" return repo |