Fix rustfmt again (?)

This commit is contained in:
coolreader18
2019-03-23 22:17:21 -05:00
parent 946103bca8
commit ec433cdbb9

View File

@@ -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 {