diff --git a/vm/src/obj/objsuper.rs b/vm/src/obj/objsuper.rs index 53e347b9fe..c41cf183e3 100644 --- a/vm/src/obj/objsuper.rs +++ b/vm/src/obj/objsuper.rs @@ -128,8 +128,9 @@ fn super_new( match vm.get_locals().get_item(first_arg) { Some(obj) => obj.clone(), _ => { - return Err(vm - .new_type_error(format!("super argument {} was not supplied", first_arg))); + return Err( + vm.new_type_error(format!("super arguement {} was not supplied", first_arg)) + ); } } } else {