Does anyone know if there is a (public) repository...
# contribute-code
s
Does anyone know if there is a (public) repository for the acryl-executor package (https://pypi.org/project/acryl-executor/)? It is a dependency of the datahub-actions package. When playing around with the Actions Framework I have noticed that a small typo in the acryl-executor package prevents the Actions Framework from running with Python 3.8 and below...🙃
The requirement for both packages is Python 3.6 and above, therefore it should work with Python 3.8
(not sure if this will be readable here, but this is the patch which fixes the issue 😄) --- a/acryl/executor/secret/datahub_secrets_client.py +++ b/acryl/executor/secret/datahub_secrets_client.py @@ -37 +37 @@ - def get_secret_values(self, secret_names: List[str]) -> List[dict[str, str]]: + def get_secret_values(self, secret_names: List[str]) -> List[Dict[str, str]]:
m
Thanks for this, we’ll apply it on our end!
👍🏻 1