Fixed some clippy lints

This commit is contained in:
2026-05-19 19:34:56 +01:00
parent ee34493895
commit 9255c1d7fa
4 changed files with 19 additions and 26 deletions
+1 -3
View File
@@ -1,7 +1,6 @@
use crate::
{
tokenise,
character,
api,
HashMap,
@@ -16,9 +15,8 @@ use crate::
pub fn keyword_parse(
tokens: &[tokenise::Token],
token: String,
token: &str,
mut index: usize,
characters: &Arc<Mutex<HashMap::<String, character::Character>>>,
happening_queue: &Arc<Mutex<VecDeque<api::DataToSend>>>,
labels: &HashMap<String, usize>,
rx: &Receiver<(usize,String)>,