We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d912aa3 commit 23cf8b6Copy full SHA for 23cf8b6
sdks/python/apache_beam/transforms/core.py
@@ -1504,8 +1504,8 @@ def _check_fn_use_yield_and_return(fn):
1504
has_yield = False
1505
has_return = False
1506
return_none_warning = (
1507
- f"No iterator is returned by the "
1508
- f"process method in {fn.__self__.__class__}.")
+ "No iterator is returned by the process method in %s.",
+ fn.__self__.__class__)
1509
for line in source_code.split("\n"):
1510
lstripped_line = line.lstrip()
1511
if lstripped_line.startswith("yield ") or lstripped_line.startswith(
0 commit comments