remove unnecessary must_use

This commit is contained in:
Dr. Matthias Ratajczak
2023-02-02 16:18:11 +01:00
parent 169371473c
commit 220dc26389
-1
View File
@@ -3,7 +3,6 @@ use std::io::{self, Read, Write};
use anyhow::{Context, Result};
use termios::*;
#[must_use]
pub(crate) fn get_user_confirmation() -> Result<bool> {
print!("Continue? [Y/n] ");
std::io::stdout().flush().unwrap();