rustfmt on pyobject.rs file

This commit is contained in:
Robert Booth
2021-04-26 10:01:39 +09:00
parent dd50b252a8
commit 222d1776ae

View File

@@ -390,8 +390,7 @@ where
obj.downcast()
.map_err(|obj| pyref_payload_error(vm, class, obj))
} else {
T::special_retrieve(vm, &obj)
.unwrap_or_else(|| Err(pyref_type_error(vm, class, obj)))
T::special_retrieve(vm, &obj).unwrap_or_else(|| Err(pyref_type_error(vm, class, obj)))
}
}
}