Cleaned up warnings

This commit is contained in:
2025-03-23 17:41:12 -04:00
parent 32ec62b52f
commit 937bbbacdd
18 changed files with 23 additions and 288 deletions

View File

@@ -1,8 +1,8 @@
use std::{ops::Deref, str::FromStr, sync::{Arc, LazyLock}};
use std::sync::{Arc, LazyLock};
use fmt::Display;
use crate::{libsh::error::ShResult, parse::lex::Tk, prelude::*};
use crate::{parse::lex::Tk, prelude::*};
type OptSet = Arc<[Opt]>;