Skip to content

Commit 39c3e3f

Browse files
committed
typing
1 parent cab9c92 commit 39c3e3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/danswer/db/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def get_total_users_count(db_session: Session) -> int:
4343
"""
4444
user_count = (
4545
db_session.query(User)
46-
.filter(~User.email.endswith(get_api_key_email_pattern()))
46+
.filter(~User.email.endswith(get_api_key_email_pattern())) # type: ignore
4747
.count()
4848
)
4949
invited_users = len(get_invited_users())

0 commit comments

Comments
 (0)