fix clippy lint

This commit is contained in:
figsoda 2022-11-07 14:30:09 -05:00
parent dbd4a70e76
commit c9b0fee238

View file

@ -138,7 +138,7 @@ async fn run() -> Result<()> {
stdout
.execute(EnterAlternateScreen)
.context("Failed to enter alternate screen")?;
let __ = Cleanup;
let _cleanup = Cleanup;
let mut term =
Terminal::new(CrosstermBackend::new(stdout)).context("Failed to initialize terminal")?;