remove debug line

This commit is contained in:
Abraham Toriz 2021-07-03 18:20:35 -05:00
parent 7ef5c7be95
commit 1b34ab89af
No known key found for this signature in database
GPG Key ID: D5B4A746DB5DD42A
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ pub fn parse_time(input: &str) -> Result<DateTime<Utc>> {
} else if let Some(_) = caps.name("hcomposed") {
NUMBER_VALUES[&caps["hcten"]] + NUMBER_VALUES[&caps["hcdigit"]]
} else if let Some(m) = caps.name("htextualnum") {
dbg!(m.as_str().parse().unwrap())
m.as_str().parse().unwrap()
} else {
unreachable!()
}