Skip to content

Commit ba10d5f

Browse files
fix: update return type of _resolve_allowed_domains method to Optional[list[str]]
1 parent e92fade commit ba10d5f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/auth0_api_python/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ async def _resolve_allowed_domains(
108108
unverified_iss: str,
109109
request_url: Optional[str] = None,
110110
request_headers: Optional[dict] = None
111-
) -> list[str]:
111+
) -> Optional[list[str]]:
112112
"""
113113
Resolve and validate allowed domains for the given issuer.
114114

0 commit comments

Comments
 (0)