Commit 9e412fe
committed
fix(gobd_company): replace literal newline in string with \n escape (CodeRabbit P1)
PR #426's `body_source = "<literal newline>".join(body_lines)` was a
SyntaxError that escaped the smoke test because the smoke test only
exercises uom (the ORM-only path), not l10n_de's data extractor.
CodeRabbit flagged this in the final review at `25e8d2b6` as a
"duplicate" comment carried forward; it remained unresolved through
merge. Fix: `"\n".join(body_lines)` — the intended one-char escape.
Now `python -m ast` parses gobd_company.py cleanly. Smoke test still
passes (no regression).
https://claude.ai/code/session_017gZ6sPRXYPj5n7uJ7NBtRv1 parent 8b5da0e commit 9e412fe
1 file changed
Lines changed: 1 addition & 2 deletions
Lines changed: 1 addition & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
52 | | - | |
| 51 | + | |
53 | 52 | | |
54 | 53 | | |
55 | 54 | | |
| |||
0 commit comments