Skip to content

Commit 7c85002

Browse files
committed
x
1 parent 65d667b commit 7c85002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/builtins/function.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ impl PyBoundMethod {
507507
impl PyBoundMethod {
508508
#[pymethod(magic)]
509509
fn repr(&self, vm: &VirtualMachine) -> PyResult<String> {
510-
#[allow(clippy::needless_match)] // False positive on nightly
510+
#[allow(clippy::needless_match)] // False positive on nightly
511511
let funcname =
512512
if let Some(qname) = vm.get_attribute_opt(self.function.clone(), "__qualname__")? {
513513
Some(qname)

0 commit comments

Comments
 (0)