fix: removed Unknown from errors

This commit is contained in:
Bram Dingelstad 2023-03-20 14:50:10 +01:00
parent b65be908a8
commit acb8924b46

View file

@ -23,8 +23,7 @@ pub enum Error {
Deserialization(serde_json::Error, Option<Value>),
Header(reqwest::header::InvalidHeaderValue),
ChronoParse(chrono::ParseError),
NoSuchProperty(String),
Unknown
NoSuchProperty(String)
}
impl From<reqwest::Error> for Error {