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
@overload def arrow_strip_whitespace(obj: Table, /, *cols: str) -> Table: ... @overload def arrow_strip_whitespace(obj: Array, /, *cols: str) -> Array: ... # type: ignore[misc] def arrow_strip_whitespace(obj, /, *cols): ...
This raises E302 on the line def arrow_strip_whitespace(obj, /, *cols). If I remove the type-ignore comment, it does not flag it anymore.
def arrow_strip_whitespace(obj, /, *cols)
https://play.ruff.rs/cfc09a7a-1e90-4254-8e16-827aebd143c9
The text was updated successfully, but these errors were encountered:
Ignore end-of-line comments when determining blank line rules (#11342)
8e9ddee
## Summary Closes #11331.
charliermarsh
Successfully merging a pull request may close this issue.
This raises E302 on the line
def arrow_strip_whitespace(obj, /, *cols)
. If I remove the type-ignore comment, it does not flag it anymore.https://play.ruff.rs/cfc09a7a-1e90-4254-8e16-827aebd143c9
The text was updated successfully, but these errors were encountered: