Skip to content

Commit 6366455

Browse files
committed
Fixes cargo clippy lint error
1 parent 6771b9e commit 6366455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ser/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,5 +400,5 @@ where
400400
Input: Serialize + ?Sized,
401401
Output: TryConvert,
402402
{
403-
TryConvert::try_convert(input.serialize(Serializer)?).map_err(Into::into)
403+
TryConvert::try_convert(input.serialize(Serializer)?)
404404
}

0 commit comments

Comments
 (0)