diff --git a/src/python/pants/backend/helm/subsystems/post_renderer_main.py b/src/python/pants/backend/helm/subsystems/post_renderer_main.py index 1a331a5c7a74..2edd87ae0dc0 100644 --- a/src/python/pants/backend/helm/subsystems/post_renderer_main.py +++ b/src/python/pants/backend/helm/subsystems/post_renderer_main.py @@ -33,7 +33,7 @@ def build_manifest_map(input_file: str) -> dict[str, list[str]]: Since there are cases in which the same source may produce more than one YAML structure, the returned type represents this with a dictionary of lists, in which the key is the source filename and each item in the list - is th content following the `# Source: ...` header. + is the content following the `# Source: ...` header. """ result = defaultdict(list)