We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15e9191 commit 784d0d2Copy full SHA for 784d0d2
sdks/python/apache_beam/yaml/yaml_provider.py
@@ -1548,8 +1548,9 @@ def create_transform(
1548
"""Creates a PTransform instance for the given transform type and arguments.
1549
"""
1550
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.
+ # NOTE: If the `key` is not found in the mappings
+ # (e.g. standard_io.yaml), the `key` is passed down
1553
+ # as is to the underlying transform.
1554
remapped_args = {
1555
mappings.get(key, key): value
1556
for key, value in args.items()
0 commit comments