chore: fix warning
cargo devel CI / cargo CI (push) Failing after 1m30s Details

This commit is contained in:
Christoph J. Scherr 2024-07-24 12:01:14 +02:00
parent 5a5757b071
commit 206ebad5cd
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ use clap::{Parser, Subcommand};
use libpt::cli::console::style;
use libpt::cli::{repl::Repl, strum};
use libpt::log::*;
use strum::{EnumIter, IntoEnumIterator};
use strum::EnumIter;
use wordle_analyzer::game::evaluation::Evaluation;
use wordle_analyzer::game::response::GuessResponse;
@ -167,7 +167,7 @@ fn help_guess_interactive(cli: Cli) -> anyhow::Result<()> {
Ok(())
}
fn wlcommand_handler(cli: &Cli, cmd: &WlCommand, wl: &impl WordList) -> anyhow::Result<()> {
fn wlcommand_handler(_cli: &Cli, cmd: &WlCommand, wl: &impl WordList) -> anyhow::Result<()> {
match cmd {
WlCommand::Stats => {
println!("{wl}")