fix(2fa): Fix 403 for trusted device

This commit is contained in:
Mike A
2024-02-23 14:53:03 +01:00
parent d4d7198ab6
commit ae68ac2d70
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ logging.getLogger(__name__)
class _HttpRequestOptions(TypedDict, total=False):
json: dict[str, Any]
json: dict[str, Any] | None
headers: dict[str, str]
auth: tuple[str, str] | BasicAuth
data: bytes