Skip to content

Commit

Permalink
Common: Change "get_secret_value" return type to Any
Browse files Browse the repository at this point in the history
Theoretically SecretVariable should support any data type, intergace should reflect it
  • Loading branch information
VakarisZ committed Mar 21, 2023
1 parent d0654cc commit 30ab2fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monkey/common/utils/secret_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ def __init__(self, secret_value: Any):
else:
raise NotImplementedError("SecretVariable only supports string values.")

def get_secret_value(self) -> str:
def get_secret_value(self) -> Any:
return self._secret_value.get_secret_value()

0 comments on commit 30ab2fe

Please sign in to comment.