Remove whitespace
This commit is contained in:
parent
f40478a58d
commit
6a3009df26
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ async fn main() {
|
||||||
let counter = Arc::new(AtomicU64::new(
|
let counter = Arc::new(AtomicU64::new(
|
||||||
if let Some(prev_count) = std::fs::read_to_string(COUNT_FILE)
|
if let Some(prev_count) = std::fs::read_to_string(COUNT_FILE)
|
||||||
.ok()
|
.ok()
|
||||||
.and_then(|s| s.parse().ok())
|
.and_then(|s| s.trim().parse().ok())
|
||||||
{
|
{
|
||||||
prev_count
|
prev_count
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue