chore: format

This commit is contained in:
Timothy Jaeryang Baek
2026-03-01 13:29:06 -06:00
parent 62ab30f593
commit 2cbba2a28a
+5 -1
View File
@@ -146,7 +146,11 @@ class AuthsTable:
def authenticate_user_by_api_key(
self, api_key: str, db: Optional[Session] = None
) -> Optional[UserModel]:
log.info(f"authenticate_user_by_api_key: ...{api_key[-4:]}" if api_key else "authenticate_user_by_api_key: <empty>")
log.info(
f"authenticate_user_by_api_key: ...{api_key[-4:]}"
if api_key
else "authenticate_user_by_api_key: <empty>"
)
# if no api_key, return None
if not api_key:
return None