Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpasmantier committed Oct 13, 2024
1 parent 731c230 commit 858a9d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/television/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl Future for PollFuture {
type Output = bool;

fn poll(
mut self: Pin<&mut Self>,
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> TaskPoll<Self::Output> {
// Polling crossterm::event::poll, which is a blocking call
Expand Down
2 changes: 1 addition & 1 deletion crates/television/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::{
io::{stderr, stdout, LineWriter},
sync::Arc,
};
use tracing::{debug, info, warn};
use tracing::{debug, warn};

use tokio::{
select,
Expand Down
2 changes: 1 addition & 1 deletion crates/television/tui.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::{
io::{stderr, stdout, LineWriter, Write},
io::{stderr, LineWriter, Write},
ops::{Deref, DerefMut},
};

Expand Down

0 comments on commit 858a9d9

Please sign in to comment.