Skip to content

Commit

Permalink
chore: Rust 1.77 linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Mar 30, 2024
1 parent 7953e68 commit dfd4948
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ impl ExecMode {
}

while let Ok(x) = async_tty.rx.recv() {
input.write(&[x]).await.ok();
input.write_all(&[x]).await.ok();
}

self.internal_cleanup()?;
Expand Down
1 change: 1 addition & 0 deletions src/input_handler/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ impl InputHandler {
.read(true)
.write(true)
.create(true)
.truncate(true)
.open(&path)?,
);

Expand Down

0 comments on commit dfd4948

Please sign in to comment.