From a610703f4d2c336451ae2bd57f18070ee6220459 Mon Sep 17 00:00:00 2001 From: yumosx Date: Sun, 28 Dec 2025 19:36:38 +0800 Subject: [PATCH] docs: remove incorrect expires_delta parameter in auth.py --- src/labs/utils/auth.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/labs/utils/auth.py b/src/labs/utils/auth.py index c49dffa..385b3e2 100644 --- a/src/labs/utils/auth.py +++ b/src/labs/utils/auth.py @@ -61,8 +61,6 @@ def create_access_token( Args: subject (str): The subject of the token, usually the email - expires_delta (int, optional): The number of seconds the token - should be valid for. Defaults to None. fresh (bool, optional): Whether the token is fresh or not. Defaults to False.