Skip to content

Commit

Permalink
kwarg type hints (#38214)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrm9084 authored Oct 31, 2024
1 parent 5e02fe9 commit 946fe58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 946fe58

Please sign in to comment.