Skip to content

Commit 0ac0432

Browse files
committed
Run cargo fmt
1 parent 80573b0 commit 0ac0432

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/pyobject.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ impl fmt::Display for PyObject {
7070
use self::TypeProtocol;
7171
match &self.kind {
7272
PyObjectKind::Module { name, .. } => write!(f, "module '{}'", name),
73-
PyObjectKind::Class { name, dict,.. } => {
73+
PyObjectKind::Class { name, .. } => {
7474
let type_name = objtype::get_type_name(&self.typ());
7575
// We don't have access to a vm, so just assume that if its parent's name
7676
// is type, it's a type

0 commit comments

Comments
 (0)