Skip to content

Commit d90c332

Browse files
committed
fix yapf error
1 parent 9e959bb commit d90c332

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sdks/python/apache_beam/yaml/yaml_provider.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1548,8 +1548,9 @@ def create_transform(
15481548
"""Creates a PTransform instance for the given transform type and arguments.
15491549
"""
15501550
mappings = self._mappings[typ]
1551-
# NOTE: If the `key` is not found in the mappings (e.g. standard_io.py), the
1552-
# `key` is passed down as is to the underlying transform.
1551+
# NOTE: If the `key` is not found in the mappings
1552+
# (e.g. standard_io.yaml), the `key` is passed down
1553+
# as is to the underlying transform.
15531554
remapped_args = {
15541555
mappings.get(key, key): value
15551556
for key, value in args.items()

0 commit comments

Comments
 (0)