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
wildcard_import
#[pyclass]
main
This code is failing clippy on main, is fine on 0.22.
clippy
#![deny(clippy::pedantic, clippy::all)] #[pyo3::pymodule] mod pyo3_scratch { use pyo3::prelude::*; #[pyclass] pub struct Foo {} }
error: usage of wildcard import --> src/lib.rs:7:5 | 7 | #[pyclass] | ^--------- | | | _____in this procedural macro expansion | | 8 | | pub struct Foo {} | |__________________^ |
... it's probably another similar case to #4663
The text was updated successfully, but these errors were encountered:
clippy::wildcard_import
Successfully merging a pull request may close this issue.
This code is failing
clippy
on main, is fine on 0.22.... it's probably another similar case to #4663
The text was updated successfully, but these errors were encountered: