Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run rustfmt
  • Loading branch information
fanninpm committed Apr 28, 2022
commit d51593d50bc38b46335e9e5dbd77a5ad5209a5f8
6 changes: 1 addition & 5 deletions vm/src/exceptions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -526,11 +526,7 @@ impl PyBaseException {
zelf: PyRef<Self>,
_vm: &VirtualMachine,
) -> (PyTypeRef, PyTupleRef, Option<PyDictRef>) {
(
zelf.class().clone(),
zelf.args(),
zelf.as_object().dict(),
)
(zelf.class().clone(), zelf.args(), zelf.as_object().dict())
}
}

Expand Down