From 7b26349684e89fc3e12eae9c57acf33c42fd1cb4 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Mon, 7 Aug 2023 12:39:57 +0530 Subject: [PATCH] fix: remove unneeded imports as per lint --- src/cli/mod.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/cli/mod.rs b/src/cli/mod.rs index d1fe6b2..d244704 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -1,15 +1,10 @@ use std::{ fmt::Write as _, - io::ErrorKind, - path::PathBuf, - process::{exit, ExitCode}, + process::ExitCode, }; use anyhow::{Context, Result}; use clap::{CommandFactory, Parser}; -use rustyline::{ - error::ReadlineError, Cmd, DefaultEditor, EventHandler, KeyCode, KeyEvent, Modifiers, -}; use lune::Lune; use tokio::{