Skip to content

Commit 0532579

Browse files
committed
Fix typing issue in auth provider
1 parent 6ca9e38 commit 0532579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/msgraph_core/authentication/azure_identity_authentication_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(
1919
credentials: Union["TokenCredential", "AsyncTokenCredential"],
2020
options: Optional[Dict] = {},
2121
scopes: List[str] = [],
22-
allowed_hosts: Optional[List[str]] = [nc.value for nc in NationalClouds]
22+
allowed_hosts: List[str] = [nc.value for nc in NationalClouds]
2323
) -> None:
2424
"""[summary]
2525

0 commit comments

Comments
 (0)