Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ class AzureAppConfigurationProvider(Mapping[str, Union[str, JSON]]): # pylint:
keys. Enables resolution of Key Vault references in configuration settings.
"""

def __init__(self, **kwargs) -> None:
def __init__(self, **kwargs: Any) -> None:
endpoint = kwargs.pop("endpoint", None)
self._origin_endpoint = endpoint

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ class AzureAppConfigurationProvider(Mapping[str, Union[str, JSON]]): # pylint:
keys. Enables resolution of Key Vault references in configuration settings.
"""

def __init__(self, **kwargs) -> None:
def __init__(self, **kwargs: Any) -> None:
endpoint = kwargs.pop("endpoint", None)
self._origin_endpoint = endpoint

Expand Down