remove unused dep; cargo clippy

This commit is contained in:
2025-04-18 17:44:21 +02:00
parent 06c5e5a9d1
commit 37b6ea6057
4 changed files with 3 additions and 6 deletions

View File

@ -196,7 +196,7 @@ WHERE day = ? AND planned_starting_time = ?
.fetch_one(db)
.await
.unwrap(); //TODO: fixme
let amount_currently_registered = i64::from(amount_currently_registered.count);
let amount_currently_registered = amount_currently_registered.count;
amount_currently_registered >= self.max_people
}