From 222d1776ae763b16ce77c8e218857997207f380b Mon Sep 17 00:00:00 2001 From: Robert Booth Date: Mon, 26 Apr 2021 10:01:39 +0900 Subject: [PATCH] rustfmt on pyobject.rs file --- vm/src/pyobject.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vm/src/pyobject.rs b/vm/src/pyobject.rs index d70fff15f..e541c3a1b 100644 --- a/vm/src/pyobject.rs +++ b/vm/src/pyobject.rs @@ -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))) } } }