We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue: Several functions lack type annotations. Adding type hints can improve code readability and help with static type checking.
Solution: Go through the handler.py of all providers ( infracost, json, kubernetes, sg_workflow, terraform_plan ) and add type hints to functions .
handler.py
( infracost, json, kubernetes, sg_workflow, terraform_plan )
Example:
def _get_exp_attribute(split_expressions: List[str], input_data: dict) -> List[Any]:
The text was updated successfully, but these errors were encountered:
Please assign the issue to me,
cheers
Sorry, something went wrong.
@zafar-hussain Sure, I have assigned it to you.
I would like to work on this
@AkashS0510 . Please do assign this issue to another applicant
@kushal9897 assigning it to you
kushal9897
No branches or pull requests
Issue: Several functions lack type annotations. Adding type hints can improve code readability and help with static type checking.
Solution: Go through the
handler.py
of all providers( infracost, json, kubernetes, sg_workflow, terraform_plan )
and add type hints to functions .Example:
def _get_exp_attribute(split_expressions: List[str], input_data: dict) -> List[Any]:
The text was updated successfully, but these errors were encountered: