From 031ea891ec6e7b07b75ca1f77ba601e0231248e7 Mon Sep 17 00:00:00 2001 From: Anthony Oteri Date: Thu, 21 Sep 2023 16:18:44 -0400 Subject: [PATCH] Run automated code cleanup --- src/error.rs | 1 + src/main.rs | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index b41a20d..50a9e8f 100644 --- a/src/error.rs +++ b/src/error.rs @@ -16,6 +16,7 @@ #![allow(clippy::enum_variant_names)] #![allow(clippy::module_name_repetitions)] + use thiserror::Error; /// The common error type for this Application. diff --git a/src/main.rs b/src/main.rs index 4ae19d5..42e9914 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,7 +21,6 @@ use url::Url; use crate::cli::Cli; use crate::cli::Commands; - use crate::error::DredgeError; mod api;