We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83133d6 commit 23b3be2Copy full SHA for 23b3be2
src/validators/dataclass.rs
@@ -680,7 +680,7 @@ impl DataclassValidator {
680
dc.call_method0(post_init)
681
} else {
682
let args = post_init_kwargs.downcast::<PyTuple>()?;
683
- dc.call_method1(post_init, args.clone()) // FIXME should not need clone here
+ dc.call_method1(post_init, args)
684
};
685
r.map_err(|e| convert_err(py, e, input))?;
686
}
0 commit comments