From e2882c3eec57794861191f9a272a9eb32bd3f74a Mon Sep 17 00:00:00 2001 From: record-bot Date: Tue, 28 Apr 2026 10:51:33 -0700 Subject: [PATCH] v3-rerun lint smoke: intro E501 in lists.py --- src/humanize/lists.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/humanize/lists.py b/src/humanize/lists.py index 3a52f1e..01cce57 100644 --- a/src/humanize/lists.py +++ b/src/humanize/lists.py @@ -34,3 +34,8 @@ def natural_list(items: list[Any]) -> str: return f"{str(items[0])} and {str(items[1])}" else: return ", ".join(str(item) for item in items[:-1]) + f" and {str(items[-1])}" + + +def _phalanx_v3_regression_marker() -> str: + """Synthetic regression smoke — intentional E501 to trigger ruff. Safe to drop.""" + return "Phalanx v3 regression smoke — this single line is intentionally well past the 88-character ruff limit so that the Lint job fails."