Skip to content

Commit

Permalink
[fix] 'use' statements at the top of the file
Browse files Browse the repository at this point in the history
  • Loading branch information
woshilapin committed May 24, 2021
1 parent ec59328 commit 024e98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/read_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ use crate::{
use failure::{bail, format_err, ResultExt};
use log::{info, Level as LogLevel};
use serde::Deserialize;
use skip_error::SkipError;
use std::path;
use std::path::{Path, PathBuf};
use std::{collections::BTreeMap, io::Read};
Expand Down Expand Up @@ -267,7 +268,6 @@ where
.flexible(true)
.trim(csv::Trim::All)
.from_reader(reader);
use skip_error::SkipError;
let objects = rdr
.deserialize()
.map(|object| object.with_context(|_| format!("Error reading {:?}", path)))
Expand Down

0 comments on commit 024e98f

Please sign in to comment.