修复机器人返回数据排序的问题
修改定时任务持续输出日志的问题
This commit is contained in:
parent
90a5c71e43
commit
6899509ba6
@ -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')
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user