From d972dd52230a524edacb4896c5e30f03f38ffd2a Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 10 Jan 2023 16:59:13 +0100 Subject: [PATCH] cargo fmt --- src/time/ascii.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/time/ascii.rs b/src/time/ascii.rs index 2ae32fe..ad0a210 100644 --- a/src/time/ascii.rs +++ b/src/time/ascii.rs @@ -3,7 +3,10 @@ //! See [chrono::DateTime::format] for a usage example of the generated //! [chrono::format::DelayedFormat] structs. #[cfg(feature = "alloc")] -use chrono::{DateTime, Utc, format::{DelayedFormat, StrftimeItems}}; +use chrono::{ + format::{DelayedFormat, StrftimeItems}, + DateTime, Utc, +}; /// Tuple of format string and formatted size for time code A. ///