Skip to content

Commit aa60942

Browse files
committed
fix: command.rs login
1 parent 064d8aa commit aa60942

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src-tauri/src/commands.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ use crate::{
1010
state::{AnswerUpload, CsvExport, KeyUpload, LoginRequest, LoginResponse},
1111
storage, AppState,
1212
};
13-
use anyhow::Ok;
1413
use log::{debug, info};
1514
use reqwest::Client;
1615

src-tauri/src/image.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ impl AnswerSheet {
495495
let subject_id_bubbles = roi_range_frac_ref(&subject_id_mat, 0.0..=1.0, 0.128205..=1.0)?;
496496
let student_id_bubbles = roi_range_frac_ref(&student_id_mat, 0.0..=1.0, 0.12565445..=1.0)?;
497497

498-
let mut subject_id = extract_digits_for_sub_stu(&subject_id_bubbles, 3)?;
498+
let subject_id = extract_digits_for_sub_stu(&subject_id_bubbles, 3)?;
499499
let mut student_id = extract_digits_for_sub_stu(&student_id_bubbles, 9)?;
500500
let answers = extract_answers(questions)?;
501501

0 commit comments

Comments
 (0)