bot
commited on
Commit
·
1d6678e
1
Parent(s):
8d331b1
Fix
Browse files
main.py
CHANGED
@@ -194,7 +194,7 @@ async def quota(update: Update, context):
|
|
194 |
await update.message.reply_text("未找到使用信息,请稍后再试!")
|
195 |
else:
|
196 |
await update.message.reply_text(
|
197 |
-
f"使用信息:\n{format_bytes(quota_info[
|
198 |
)
|
199 |
|
200 |
|
|
|
194 |
await update.message.reply_text("未找到使用信息,请稍后再试!")
|
195 |
else:
|
196 |
await update.message.reply_text(
|
197 |
+
f"使用信息:\n{format_bytes(quota_info['quota']['limit'])}/{format_bytes(quota_info['quota']['usage'])}\n到期时间:\n{quota_info['expires_at']}"
|
198 |
)
|
199 |
|
200 |
|