Remove whitespace

This commit is contained in:
Joshua Barretto 2025-04-28 23:02:34 +01:00
parent f40478a58d
commit 6a3009df26

View file

@ -55,7 +55,7 @@ async fn main() {
let counter = Arc::new(AtomicU64::new(
if let Some(prev_count) = std::fs::read_to_string(COUNT_FILE)
.ok()
.and_then(|s| s.parse().ok())
.and_then(|s| s.trim().parse().ok())
{
prev_count
} else {