chore: Ran cargo clippy

Signed-off-by: quexeky <git@quexeky.dev>
This commit is contained in:
quexeky
2024-12-27 10:28:38 +11:00
parent 1f899ec349
commit dcb1564568
11 changed files with 35 additions and 61 deletions

View File

@ -1,4 +1,3 @@
use std::collections::HashMap;
use crate::{
db::{GameStatus, GameTransientStatus},
@ -23,6 +22,6 @@ impl GameStatusManager {
return (offline_state, None);
}
return (None, None);
(None, None)
}
}