chore: Rust 1.77 linting

This commit is contained in:
Jack Wills
2024-03-30 15:24:45 +00:00
parent 7953e68f30
commit dfd4948d9c
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -277,7 +277,7 @@ impl ExecMode {
} }
while let Ok(x) = async_tty.rx.recv() { while let Ok(x) = async_tty.rx.recv() {
input.write(&[x]).await.ok(); input.write_all(&[x]).await.ok();
} }
self.internal_cleanup()?; self.internal_cleanup()?;
+1
View File
@@ -224,6 +224,7 @@ impl InputHandler {
.read(true) .read(true)
.write(true) .write(true)
.create(true) .create(true)
.truncate(true)
.open(&path)?, .open(&path)?,
); );