You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[lint] replaces black formatting with ruff (#14132)
`ruff` is faster than `black` when formatting Python `files`, so this
change replaces the formatting checks for our files with calls to `ruff`
instead of `black`, and runs `ruff format` on all files that would cause
those checks to fail.
@@ -767,12 +769,12 @@ async def get_userinfo_from_hail_session_id(request: web.Request, session_id: st
767
769
users= [
768
770
x
769
771
asyncforxindb.select_and_fetchall(
770
-
'''
772
+
"""
771
773
SELECT users.*
772
774
FROM users
773
775
INNER JOIN sessions ON users.id = sessions.user_id
774
776
WHERE users.state = 'active' AND sessions.session_id = %s AND (ISNULL(sessions.max_age_secs) OR (NOW() < TIMESTAMPADD(SECOND, sessions.max_age_secs, sessions.created)));
0 commit comments