Remove unused imports

This commit is contained in:
zaubentrucker 2025-02-22 22:44:48 +01:00
parent d0caab03af
commit 9d1a5e223d
3 changed files with 0 additions and 5 deletions
red/src/printer

View file

@ -1,8 +1,5 @@
use crate::printer::PrinterPosition;
use super::*;
use lazy_static::lazy_static;
use regex::Regex;
/// Get Current Position
#[derive(Debug, Default)]

View file

@ -18,7 +18,6 @@ mod m154;
mod m155;
mod m997;
use crate::printer::PrinterPosition;
pub use g0::G0Command;
pub use g28::G28Command;
pub use g90::G90Command;

View file

@ -22,7 +22,6 @@ use std::sync::mpsc;
use std::sync::mpsc::Receiver;
use std::sync::mpsc::RecvTimeoutError;
use std::sync::mpsc::Sender;
use std::sync::mpsc::TryRecvError;
use std::time::{Duration, Instant};
use std::{io, str};