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 80573b0 commit 0ac0432Copy full SHA for 0ac0432
vm/src/pyobject.rs
@@ -70,7 +70,7 @@ impl fmt::Display for PyObject {
70
use self::TypeProtocol;
71
match &self.kind {
72
PyObjectKind::Module { name, .. } => write!(f, "module '{}'", name),
73
- PyObjectKind::Class { name, dict,.. } => {
+ PyObjectKind::Class { name, .. } => {
74
let type_name = objtype::get_type_name(&self.typ());
75
// We don't have access to a vm, so just assume that if its parent's name
76
// is type, it's a type
0 commit comments