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
…#9161)
## Summary
Fix dropped union expressions for piped non-types in `PYI055` autofix
If you had `type[int] | type[str] | str`, it would have dropped the
`str`, which breaks the type!
Closes#9156
## Test Plan
`cargo test`
Ruff 0.1.8
ruff check --isolated --select PYI055 --fix
turns
into
completely disregarding
Converter[_T] | Callable[[str], _T]
The text was updated successfully, but these errors were encountered: