Formatting fix

I have checks running on push, but must have confused the build system
by modifying the file at the wrong time.
This commit is contained in:
Damien Elmes 2025-06-06 13:19:47 +07:00
parent 933d63545a
commit 2427743751

View file

@ -297,12 +297,7 @@ fn get_last_revlog_info(revlogs: &[RevlogEntry]) -> HashMap<CardId, LastRevlogIn
last_reviewed_at = Some(e.id.as_secs());
}
}
out.insert(
card_id,
LastRevlogInfo {
last_reviewed_at,
},
);
out.insert(card_id, LastRevlogInfo { last_reviewed_at });
});
out
}