fix lints

This commit is contained in:
John Turner
2025-10-26 01:52:50 -04:00
parent 3424168f3f
commit 990aa475ab
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
use core::{ use core::{
fmt::{self, write}, fmt::{self},
option::Option, option::Option,
}; };

View File

@@ -1,4 +1,4 @@
use mon::{DebugTracer, Parser, ParserResult, input::InputIter, mode::Emit, tag, whitespace1}; use mon::{Parser, ParserResult, input::InputIter, tag, whitespace1};
use crate::{ use crate::{
atom, atom,

View File

@@ -1,5 +1,5 @@
use gentoo_utils::depend; use gentoo_utils::depend;
use mon::{eof, input::InputIter, tag, Parser}; use mon::{Parser, eof, input::InputIter, tag};
use std::fs; use std::fs;
#[test] #[test]