diff options
author | Kyomotoi <[email protected]> | 2022-07-22 21:10:47 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2022-07-22 21:10:47 +0800 |
commit | 5b157a768ad101ad07cb8311d87e81fa8f1d027a (patch) | |
tree | e4e862df9adcb5e1c4f6316a136a1becaa7d43f5 | |
parent | 8012b5ab7fb3d9a26976997df6dbb53c1e7f994c (diff) | |
download | ATRI-5b157a768ad101ad07cb8311d87e81fa8f1d027a.tar.gz ATRI-5b157a768ad101ad07cb8311d87e81fa8f1d027a.tar.bz2 ATRI-5b157a768ad101ad07cb8311d87e81fa8f1d027a.zip |
🚑️ 修复bug
-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 ba9cdf5..e09bca7 100644 --- a/ATRI/plugins/anti_effort/data_source.py +++ b/ATRI/plugins/anti_effort/data_source.py @@ -234,7 +234,7 @@ class AntiEffort(Service): [ f"{i + 1}", f"{x['user_nickname']}", - f"{round(x['recent_count'], 2)} hrs", + f"{round(x[sort_type], 2)} hrs", ] for i, x in enumerate(data) ][:10] |