Skip to content

Commit

Permalink
fix(provider_handler): Fix dict value assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Noahnc committed Dec 3, 2023
1 parent c30871c commit f07b080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrapatch/core/provider_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def get_markdown_table_for_changed_resources(self) -> dict[str, MarkdownTableWri
if len(changed_resources) == 0:
log.debug(f"No changed resources found for provider {provider_name}. Skipping.")
continue
markdown_tables[provider_name](provider.get_markdown_table(changed_resources))
markdown_tables[provider_name] = provider.get_markdown_table(changed_resources)
return markdown_tables

def set_resources_patched_based_on_existing_resources(self, original_resources: dict[str, Sequence[VersionedResource]]) -> None:
Expand Down

0 comments on commit f07b080

Please sign in to comment.