Skip to content

Commit

Permalink
make format happy
Browse files Browse the repository at this point in the history
  • Loading branch information
xffxff committed Jun 14, 2023
1 parent b6faa09 commit ebb9e9e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/engines/engine_models.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,14 @@ impl fmt::Display for EngineError {
write!(f, "The upstream search engine returned an empty result set")
}
EngineError::RequestError => {
write!(f, "Error occurred while requesting data from upstream search engine")
write!(
f,
"Error occurred while requesting data from upstream search engine"
)
}
EngineError::UnexpectedError => {
write!(f, "An unexpected error occurred while processing the data")
}
EngineError::UnexpectedError => write!(f, "An unexpected error occurred while processing the data"),
}
}
}
Expand Down

0 comments on commit ebb9e9e

Please sign in to comment.