From b99f27935b2f44fd9d6d9e544ea6b0c0a0cd809d Mon Sep 17 00:00:00 2001 From: ddidderr Date: Thu, 4 Aug 2022 18:51:27 +0200 Subject: [PATCH] [rustfmt] applied the new rustfmt settings --- src/main.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 7a7c994..9d6930a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,7 +2,15 @@ use chrono::prelude::*; use std::{ env::args, fs::File, - io::{stdin, stdout, Error as IoError, Read, StdoutLock, Write}, + io::{ + stdin, + stdout, + Error as IoError, + ErrorKind, + Read, + StdoutLock, + Write, + }, }; type LogtimesResult = Result<(), IoError>;