summaryrefslogtreecommitdiff
path: root/src/commands/general/convert.rs
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-18 18:30:42 -0500
committerseth <[email protected]>2024-02-18 18:38:30 -0500
commitc6446aa74006ab73059e316917791c5230d1e897 (patch)
treed9d74191a7f220a275a6fb1341bd894ba3f2372f /src/commands/general/convert.rs
parentdb362aefe343e2cb27d6c01c89464b0a8100b295 (diff)
use newer eyre directly
Diffstat (limited to 'src/commands/general/convert.rs')
-rw-r--r--src/commands/general/convert.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/general/convert.rs b/src/commands/general/convert.rs
index 1dd7f60..5e14175 100644
--- a/src/commands/general/convert.rs
+++ b/src/commands/general/convert.rs
@@ -1,7 +1,7 @@
use crate::Context;
use bottomify::bottom;
-use color_eyre::eyre::Result;
+use eyre::Result;
use poise::serenity_prelude::constants::MESSAGE_CODE_LIMIT;
#[allow(clippy::unused_async)]