Skip to content
New issue

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

Fix typo in function name #66

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

args = parser.parse_args()

def create_shart_resources(metrics):
def create_chart_resources(metrics):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch! Oops!

"""Creat chart resources from provided dict of metrics from the provided yaml

Returns:
Expand Down Expand Up @@ -84,7 +84,7 @@ def process_yaml_file(file_path):
type = data.get("type", str)

# Generate chart resources for each metric
terraform_chart_configs = create_shart_resources(metrics)
terraform_chart_configs = create_chart_resources(metrics)

# Join Terraform configurations into a single string
terraform_chart_str = "\n".join(terraform_chart_configs)
Expand Down
Loading