format / reduce diff

This commit is contained in:
manmen-mi 2024-12-08 11:46:56 +09:00
parent 6760560920
commit 027cbdb629
3 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,8 @@ use crate::{
embedded::EMBEDDED_FILES,
exercise::{Exercise, RunnableExercise},
info_file::ExerciseInfo,
term::{self, CheckProgressVisualizer}, url_replacer::UrlReplacer,
term::{self, CheckProgressVisualizer},
url_replacer::UrlReplacer,
};
const STATE_FILE_NAME: &str = ".rustlings-state.txt";

View file

@ -186,7 +186,6 @@ fn main() -> Result<ExitCode> {
if let Some(name) = name {
app_state.set_current_exercise_by_name(&name)?;
}
println!("{}", app_state.current_exercise().hint);
}
// Handled in an earlier match.