Incorrect formatting of comments in match
statement for tuple without parentheses
#8091
Milestone
match
statement for tuple without parentheses
#8091
Version: 0.1.1
Command:
ruff format --isolated example.py
Playground: Example
Example
This is formatted to
Adding parentheses around the matched tuple (
match n % 3, n % 5
->match (n % 3, n % 5)
) results in expected formatting.The text was updated successfully, but these errors were encountered: