Jens-G opened a new pull request, #3838: URL: https://github.com/apache/thrift/pull/3838
The Static Code Analysis / lib-python job fails on flake8: ``` lib/py/test/test_http_server_body_size.py:46:13: W503 line break before binary operator ``` The repository's `.flake8` ignores `W504` but enforces `W503`, so a line has to break *after* a binary operator, not before it. The `message()` helper wrapped a byte-string concatenation before the `+`; this moves the operator to the end of the line. No behaviour change — it is a test helper, and the produced bytes are identical. Verified by running a bare `flake8` from the repository root (the SCA job's exact invocation) against a clean checkout of the branch: no violations. No JIRA ticket — trivial lint fix. Generated-by: Claude Opus 4.8 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
