We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
unsafe_op_in_unsafe_fn
pyhq
1 parent d1cbb1e commit 287b810Copy full SHA for 287b810
crates/pyhq/src/lib.rs
@@ -1,6 +1,8 @@
1
// This lint is currently buggy and doesn't work properly with procedural macros (#[pyfunction]).
2
// Re-check in version 1.65.0.
3
#![allow(clippy::borrow_deref_ref)]
4
+// Temporarily allow this lint before we update pyo3.
5
+#![allow(unsafe_op_in_unsafe_fn)]
6
7
use pyo3::types::PyModule;
8
use pyo3::{FromPyObject, PyAny, pyclass, pyfunction, pymethods, pymodule};
0 commit comments