somehow, no warnings

This commit is contained in:
🪞👃🪞 2024-12-27 16:00:31 +01:00
parent 8652a5e415
commit a64925ba8c
7 changed files with 118 additions and 118 deletions

View file

@ -1,9 +1,9 @@
#![allow(unused)]
#![allow(clippy::unit_arg)]
pub mod core; pub use self::core::*;
pub mod core; pub use self::core::*;
pub mod time; pub(crate) use self::time::*;
pub mod time; pub(crate) use self::time::*;
pub mod space; pub(crate) use self::space::*;
@ -41,7 +41,7 @@ pub(crate) use crossterm::terminal::{EnterAlternateScreen, LeaveAlternateScreen,
pub(crate) use crossterm::event::{KeyCode, KeyModifiers, KeyEvent, KeyEventKind, KeyEventState};
pub use ::ratatui; pub(crate) use ratatui::{
prelude::{Style, Color, Buffer},
prelude::{Style, Buffer},
style::{Stylize, Modifier},
backend::{Backend, CrosstermBackend, ClearType}
};