You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ruff E501 now honors line_length. The line-too-long rule read ruff's pycodestyle.max_line_length, which poly never set — so it stayed pinned at ruff's hardcoded 88 regardless of the configured line_length (while the formatter correctly used 120). poly now mirrors the resolved line_length onto pycodestyle.max_line_length, so select = ["ALL"] projects with a 120 limit no longer see false-positive E501 on 89–120 char lines.