Skip to content

Commit 692d5e7

Browse files
committed
yapf fix
1 parent 92a05c6 commit 692d5e7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

sdks/python/apache_beam/yaml/yaml_mapping.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,7 @@ class _Explode(beam.PTransform):
544544
`cross_product` is set to `true` but only the two rows
545545
`('a', 1)` and `('b', 2)` when it is set to `false`.
546546
Only meaningful (and required) if multiple rows are specified.
547+
error_handling: Whether and how to handle errors during iteration.
547548
""" # pylint: disable=line-too-long
548549

549550
def __init__(
@@ -563,7 +564,10 @@ def __init__(
563564
cross_product = True
564565
self._fields = fields
565566
self._cross_product = cross_product
566-
# TODO(yaml): Support standard error handling argument.
567+
# TODO(yaml):
568+
# 1. Support standard error handling argument.
569+
# 2. Supposedly error_handling parameter is not an accepted parameter when
570+
# executing. Needs further investigation.
567571
self._exception_handling_args = exception_handling_args(error_handling)
568572

569573
@maybe_with_exception_handling

0 commit comments

Comments
 (0)