We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24b3670 commit 3efa8a4Copy full SHA for 3efa8a4
2 files changed
vm/src/builtins/make_module.rs
@@ -585,6 +585,7 @@ mod decl {
585
}
586
587
588
+ #[allow(clippy::suspicious_else_formatting)]
589
#[pyfunction]
590
fn pow(
591
x: PyObjectRef,
vm/src/lib.rs
@@ -7,7 +7,6 @@
7
8
// for methods like vm.to_str(), not the typical use of 'to' as a method prefix
9
#![allow(clippy::wrong_self_convention, clippy::implicit_hasher)]
10
-#![allow(clippy::suspicious_else_formatting)]
11
// to allow `mod foo {}` in foo.rs; clippy thinks this is a mistake/misunderstanding of
12
// how `mod` works, but we want this sometimes for pymodule declarations
13
#![allow(clippy::module_inception)]
0 commit comments