修复机器人返回数据排序的问题

修改定时任务持续输出日志的问题
This commit is contained in:
zayac 2024-02-21 15:36:26 +08:00
parent 90a5c71e43
commit 6899509ba6
2 changed files with 2 additions and 1 deletions

View File

@ -43,4 +43,4 @@ if __name__ == '__main__':
while True:
schedule.run_pending()
time.sleep(1)
logger.info('Running scheduled tasks')
# logger.info('Running scheduled tasks')

View File

@ -46,4 +46,5 @@ def get_user_by_telegram_id(telegram_id: int) -> User:
with db.Session() as session:
user = session.query(User).filter(
User.status == 1 and func.find_in_set(telegram_id, User.telegram_ids) > 0).one()
user.accounts.sort(key=lambda account: account.type.value)
return user