Skip to content

Commit

Permalink
feat: add __virtual__()
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuller committed Apr 30, 2024
1 parent 3dfee49 commit cf5d556
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/saltstack_age/renderers/age.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@

Data = OrderedDict[str, Any]

__virtualname__ = "age"


def __virtual__():
return __virtualname__


def _decrypt(string: str) -> str:
secure_value = parse_secure_value(string)
Expand Down

0 comments on commit cf5d556

Please sign in to comment.