Skip to content

Commit 4ff576a

Browse files
committed
FIx clippy
1 parent 8bebd5a commit 4ff576a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/php_process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use std::{process::Stdio, str::from_utf8};
2-
use tokio::io::{AsyncReadExt, Stdout};
2+
use tokio::io::AsyncReadExt;
33

44
use tokio::process::{ChildStderr, ChildStdout};
55
use tokio::select;

src/view/session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ impl View for SessionView {
104104
delegate_event_to_pane(app, event)
105105
}
106106

107-
fn draw(app: &App, frame: &mut Frame, area: ratatui::prelude::Rect, _area: Rect) {
107+
fn draw(app: &App, frame: &mut Frame, area: ratatui::prelude::Rect, _outer_area: Rect) {
108108
if app.session_view.full_screen {
109109
build_pane_widget(
110110
frame,

0 commit comments

Comments
 (0)