We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ruff adds unnecessary parentheses around return type annotations that are either:
def test() -> """test """: pass def test() -> [aaa, bbbb,]: pass def test() -> lists(a, b,): pass
Ruff
def test() -> ( """test """ ): pass def test() -> ([ aaa, bbbb, ]): pass def test() -> ( lists( a, b, ) ): pass
Black
def test() -> """test """: pass def test() -> [ aaa, bbbb, ]: pass def test() -> lists( a, b, ): pass
The text was updated successfully, but these errors were encountered:
I know this is somewhat of an edge case, but any workaround (tweaks in settings) for this?
Off-topic: maybe issues from here could be moved to a new Formatter: Post Stable milestone for easier tracking.
Formatter: Post Stable
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Ruff adds unnecessary parentheses around return type annotations that are either:
Ruff
Black
The text was updated successfully, but these errors were encountered: