Skip to content

Commit da04745

Browse files
committed
cleanup
1 parent 4e501cd commit da04745

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

tmc-langs-cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ fn run() -> Result<()> {
284284
.takes_value(true)))
285285

286286
.subcommand(SubCommand::with_name("wait-for-submission")
287-
.about("Submit exercise.")
287+
.about("Wait for a submission to finish.")
288288
.arg(Arg::with_name("submission-url")
289289
.long("submission-url")
290290
.required(true)

tmc-langs-core/src/tmc_core.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,6 @@ impl TmcCore {
394394
match self.check_submission(submission_url)? {
395395
SubmissionProcessingStatus::Finished(f) => return Ok(*f),
396396
SubmissionProcessingStatus::Processing(_p) => {
397-
// todo: report status
398397
thread::sleep(Duration::from_secs(1));
399398
}
400399
}

0 commit comments

Comments
 (0)