Skip to content

Commit 9d898de

Browse files
committed
Fix Clippy warning
1 parent 2815f3d commit 9d898de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/exceptions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ impl PyBaseException {
528528
) -> (PyTypeRef, PyTupleRef, Option<PyDictRef>) {
529529
(
530530
zelf.class().clone(),
531-
zelf.args().clone(),
531+
zelf.args(),
532532
zelf.as_object().dict(),
533533
)
534534
}

0 commit comments

Comments
 (0)