Fix warnings

This commit is contained in:
Joscha 2022-07-13 15:29:31 +02:00
parent cc3fbaf968
commit 9169cbb657
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ use crossterm::event::{KeyCode, KeyEvent};
use crossterm::style::{ContentStyle, Stylize};
use parking_lot::FairMutex;
use tokio::sync::mpsc;
use toss::frame::{Frame, Pos, Size};
use toss::frame::{Frame, Size};
use toss::styled::Styled;
use toss::terminal::Terminal;

View file

@ -4,7 +4,7 @@ pub mod list;
pub mod text;
use async_trait::async_trait;
use toss::frame::{Frame, Pos, Size};
use toss::frame::{Frame, Size};
#[async_trait]
pub trait Widget {

View file

@ -1,5 +1,5 @@
use async_trait::async_trait;
use toss::frame::{Frame, Pos, Size};
use toss::frame::{Frame, Size};
use super::Widget;