Skip to content

Commit ff85067

Browse files
authored
Fix string interpolation in error message
1 parent 64f3682 commit ff85067

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdks/python/apache_beam/runners/worker/bundle_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def process_encoded(self, encoded_windowed_values: bytes) -> None:
237237
coder = str(self.windowed_coder)
238238
step = self.name_context.step_name
239239
raise ValueError(
240-
f"Error decoding input stream with coder ${coder} in step ${step}"
240+
f"Error decoding input stream with coder {coder} in step {step}"
241241
) from exn
242242
self.output(decoded_value)
243243

0 commit comments

Comments
 (0)