From 1f02dc7ebae40eb9e6f47c68d4469ca8409e418e Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sat, 19 Aug 2023 17:20:00 +0200 Subject: refactor(tvix/eval): cargo clippy &GenCo Change-Id: I6b1b902ccbc12bf2acdb0fdf406d6ef336ff0b2f Reviewed-on: https://cl.tvl.fyi/c/depot/+/9098 Reviewed-by: raitobezarius Tested-by: BuildkiteCI Autosubmit: flokli --- tvix/eval/src/value/json.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tvix/eval/src/value/json.rs') diff --git a/tvix/eval/src/value/json.rs b/tvix/eval/src/value/json.rs index aa5ebe32f4d0..38496f8f35f8 100644 --- a/tvix/eval/src/value/json.rs +++ b/tvix/eval/src/value/json.rs @@ -41,7 +41,7 @@ impl Value { // Attribute sets with a callable `__toString` attribute // serialise to the string-coerced version of the result of // calling that. - if let Some(s) = attrs.try_to_string(&co, CoercionKind::Weak).await { + if let Some(s) = attrs.try_to_string(co, CoercionKind::Weak).await { return Ok(Json::String(s.as_str().to_string())); } -- cgit 1.4.1