Skip to content

Commit

Permalink
oh rustfmt ignored the code in macros
Browse files Browse the repository at this point in the history
maybe we should remove this one
  • Loading branch information
lqd committed Sep 19, 2019
1 parent 8d6ecad commit 8f4bfb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ pub fn main(opt: Options) -> Result<(), Error> {

let result: Result<(Duration, AllFacts, Output), Error> = attempt! {
let verbose = opt.verbose;
let all_facts =
tab_delim::load_tab_delimited_facts(tables, &Path::new(&facts_dir)).map_err(|e|Error(e.to_string()))?;
let all_facts = tab_delim::load_tab_delimited_facts(tables, &Path::new(&facts_dir))
.map_err(|e| Error(e.to_string()))?;
let algorithm = opt.algorithm;
let graphviz_output = graphviz_file.is_some() || liveness_graph_file.is_some();
let (duration, output) =
Expand Down

0 comments on commit 8f4bfb8

Please sign in to comment.