change stupid errors

This commit is contained in:
2025-05-17 15:31:17 -04:00
parent d4d2896102
commit 5cd03e805e
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#![warn(clippy::all, clippy::pedantic, clippy::complexity, clippy::perf, clippy::style, clippy::restriction)]
#![warn(clippy::all, clippy::pedantic)]
pub mod ansi;
pub mod input;

View File

@@ -1,4 +1,4 @@
use crate::input::{Event, KeyEvent, MouseButton, MouseEvent};
use crate::input::{Event, KeyEvent};
use crate::os::{POLLIN, STDIN_FILENO};
use std::ffi::{c_int, c_short, c_ulong, c_void};
use std::io;