summaryrefslogtreecommitdiffstats
path: root/udedokei
diff options
context:
space:
mode:
Diffstat (limited to 'udedokei')
-rw-r--r--udedokei/src/lib.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/udedokei/src/lib.rs b/udedokei/src/lib.rs
index 7a5fcc5..df75b8b 100644
--- a/udedokei/src/lib.rs
+++ b/udedokei/src/lib.rs
@@ -1,6 +1,6 @@
use std::collections::HashMap;
-use std::path::PathBuf;
use std::path::Path;
+use std::path::PathBuf;
use serde_derive::*;
use tokei;
@@ -222,9 +222,7 @@ impl LanguageExt for Language {
impl Collect {
pub fn new() -> Self {
- Self {
- stats: Stats::default(),
- }
+ Self { stats: Stats::default() }
}
pub fn finish(self) -> Stats {