From a6cd25ad469bb2a81f652174cd3f762ee29188f9 Mon Sep 17 00:00:00 2001 From: John DiSanti Date: Fri, 11 Nov 2022 09:27:08 -0800 Subject: [PATCH] Fix rustfmt lint --- rust-runtime/aws-smithy-types/src/base64.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-runtime/aws-smithy-types/src/base64.rs b/rust-runtime/aws-smithy-types/src/base64.rs index 55ad21a93c1..460a07e33d4 100644 --- a/rust-runtime/aws-smithy-types/src/base64.rs +++ b/rust-runtime/aws-smithy-types/src/base64.rs @@ -5,8 +5,8 @@ //! A thin wrapper over `base64-simd` -use std::error::Error; use base64_simd::Base64; +use std::error::Error; /// Failure to decode a base64 value. #[derive(Debug)]