Skip to content

Commit 23b3be2

Browse files
committed
address trivial fixme
1 parent 83133d6 commit 23b3be2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/validators/dataclass.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ impl DataclassValidator {
680680
dc.call_method0(post_init)
681681
} else {
682682
let args = post_init_kwargs.downcast::<PyTuple>()?;
683-
dc.call_method1(post_init, args.clone()) // FIXME should not need clone here
683+
dc.call_method1(post_init, args)
684684
};
685685
r.map_err(|e| convert_err(py, e, input))?;
686686
}

0 commit comments

Comments
 (0)