Skip to content

Commit

Permalink
DRY up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
simeg committed Nov 13, 2018
1 parent 270d476 commit 5910688
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/file_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@ extern crate dirs;

use self::dirs::home_dir;
use std::error::Error;
use std::fs;
use std::io;
use std::io::ErrorKind;
use std::io::{Read, Write};
use std::path;
use std::io::{ErrorKind, Read, Write};
use std::{fs, io, path};

pub enum Config {
Repo,
Expand Down

0 comments on commit 5910688

Please sign in to comment.