diff options
| author | mo8it <mo8it@proton.me> | 2024-09-24 16:12:44 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-09-24 16:12:44 +0200 |
| commit | 554301b8e9a1c3f8eda05d616fbdb909e2ebf640 (patch) | |
| tree | 57d2d2300012448fc3854e906700cd8b9c60cf08 /src/run.rs | |
| parent | a55e84835995b87cdcdb7f746ac9d0fb477a5586 (diff) | |
Clear terminal before final check in watch mode
Diffstat (limited to 'src/run.rs')
| -rw-r--r-- | src/run.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ pub fn run(app_state: &mut AppState) -> Result<()> { stdout.write_all(b"\n")?; } - match app_state.done_current_exercise(&mut stdout)? { + match app_state.done_current_exercise::<false>(&mut stdout)? { ExercisesProgress::NewPending | ExercisesProgress::CurrentPending => { stdout.write_all(b"Next exercise: ")?; app_state |
