From 420955e7d93cde3b4a3f07d575a1cc86b97bb7d8 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Wed, 20 Sep 2023 13:23:36 -0700 Subject: [PATCH] lint --- sdks/python/apache_beam/yaml/yaml_mapping.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdks/python/apache_beam/yaml/yaml_mapping.py b/sdks/python/apache_beam/yaml/yaml_mapping.py index 341a50f8be63..5ac3c32edd02 100644 --- a/sdks/python/apache_beam/yaml/yaml_mapping.py +++ b/sdks/python/apache_beam/yaml/yaml_mapping.py @@ -293,7 +293,8 @@ def normalize_fields(pcoll, fields, drop=(), append=False, language='generic'): for name in fields: if name in input_schema and name not in drop: raise ValueError( - f'Redefinition of field "{name}". Cannot append a field that already exists in original input.' + f'Redefinition of field "{name}". ' + 'Cannot append a field that already exists in original input.' ) if language == 'generic':