summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-04-06 17:42:52 +0200
committerMatthias Beyer <mail@beyermatthias.de>2020-04-13 12:23:46 +0200
commit694a47ae5e2756e1518b829829c46f801df7c2ac (patch)
tree516b9e4e16d5ffc772ed0265e89c23d6b33f61a6
parentb8565482bc4200dedc79d8246b05fca70b0d0554 (diff)
Fix: import anyhow::Error where it is needed
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--bin/domain/imag-todo/src/import.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/domain/imag-todo/src/import.rs b/bin/domain/imag-todo/src/import.rs
index 810faa55..f6688e96 100644
--- a/bin/domain/imag-todo/src/import.rs
+++ b/bin/domain/imag-todo/src/import.rs
@@ -18,7 +18,6 @@
//
use anyhow::Result;
-use anyhow::Error;
use libimagrt::runtime::Runtime;
@@ -51,6 +50,7 @@ fn import_taskwarrior(rt: &Runtime) -> Result<()> {
use std::collections::HashMap;
use std::ops::Deref;
+ use anyhow::Error;
use uuid::Uuid;
use libimagtodo::status::Status;