Skip to content

Commit 9fc9663

Browse files
committed
clippy: remove unnecessary semicolon
1 parent 7119769 commit 9fc9663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse_time_only_str.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ pub(crate) fn parse_time_only(date: DateTime<Local>, s: &str) -> Option<DateTime
8484
offset_in_sec += minutes.as_str().parse::<i32>().unwrap() * 60;
8585
}
8686
_ => (),
87-
};
87+
}
8888
offset_in_sec *= if &captures["sign"] == "-" { -1 } else { 1 };
8989
FixedOffset::east_opt(offset_in_sec)
9090
}

0 commit comments

Comments
 (0)