Skip to content

Commit

Permalink
[yaml] error_handling normalization follow-up
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Kinard <[email protected]>
  • Loading branch information
Polber committed Nov 8, 2024
1 parent 2a467d2 commit a53a56a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/yaml/generate_yaml_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def normalize_error_handling(f):
param.type_name),
param.description) for param in doc.params
]))),
description=f.description)
description=f.description or doc.short_description)
return f

def lines():
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/yaml/yaml_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


class ErrorHandlingConfig(NamedTuple):
"""Class to define Error Handling parameters.
"""This option specifies whether and where to output error rows.
Args:
output (str): Name to use for the output error collection
Expand Down

0 comments on commit a53a56a

Please sign in to comment.