Skip to content

v0.1.11

Choose a tag to compare

@Goldziher Goldziher released this 02 Jul 10:00
v0.1.11
26184ff

Fixed

  • 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.