Skip to content

Commit

Permalink
[Key Vault] Update type hinting key.py (Azure#31875)
Browse files Browse the repository at this point in the history
  • Loading branch information
neoseurae12 authored Sep 5, 2023
1 parent d2e34aa commit 8ec6092
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
from typing import Any, FrozenSet

class Key(object, metaclass=ABCMeta):
_supported_encryption_algorithms = frozenset([]) # type: FrozenSet[Any]
_supported_key_wrap_algorithms = frozenset([]) # type: FrozenSet[Any]
_supported_signature_algorithms = frozenset([]) # type: FrozenSet[Any]
_supported_encryption_algorithms: 'FrozenSet[Any]' = frozenset([])
_supported_key_wrap_algorithms: 'FrozenSet[Any]' = frozenset([])
_supported_signature_algorithms: 'FrozenSet[Any]' = frozenset([])

def __init__(self):
self._kid = None
Expand Down

0 comments on commit 8ec6092

Please sign in to comment.