fix: Addressed rustfmt complaints

This commit is contained in:
2025-01-18 15:33:56 -07:00
parent 81cb7a750c
commit b757d66d7a
11 changed files with 20 additions and 44 deletions
+1 -2
View File
@@ -54,8 +54,7 @@ impl<'a, 'b> KeyEventHandler<'a, 'b, ActiveRadarrBlock> for LibraryHandler<'a, '
if !self.handle_movies_table_events(movie_table_handling_config) {
match self.active_radarr_block {
_ if AddMovieHandler::accepts(self.active_radarr_block) => {
AddMovieHandler::new(self.key, self.app, self.active_radarr_block, self.context)
.handle();
AddMovieHandler::new(self.key, self.app, self.active_radarr_block, self.context).handle();
}
_ if DeleteMovieHandler::accepts(self.active_radarr_block) => {
DeleteMovieHandler::new(self.key, self.app, self.active_radarr_block, self.context)