mirror of
https://github.com/simple-login/app.git
synced 2025-02-25 16:23:16 +08:00
linting
This commit is contained in:
parent
479a9d1a35
commit
a45b6df78c
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ def refused_email_route():
|
||||||
|
|
||||||
email_logs: [EmailLog] = (
|
email_logs: [EmailLog] = (
|
||||||
EmailLog.query.filter(
|
EmailLog.query.filter(
|
||||||
EmailLog.user_id == current_user.id, EmailLog.refused_email_id != None
|
EmailLog.user_id == current_user.id, EmailLog.refused_email_id.isnot(None)
|
||||||
)
|
)
|
||||||
.order_by(EmailLog.id.desc())
|
.order_by(EmailLog.id.desc())
|
||||||
.all()
|
.all()
|
||||||
|
|
Loading…
Reference in a new issue