Skip to content

Commit

Permalink
Dont show error on extract show/episode/movies output dict
Browse files Browse the repository at this point in the history
Signed-off-by: Luis Garcia <[email protected]>
  • Loading branch information
luigi311 committed Nov 9, 2024
1 parent 4e60c08 commit 348a0b8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ def show_title_dict(user_list: dict):

return show_output_dict
except Exception:
logger("Skipping show_output_dict ", 1)
return {}


Expand Down Expand Up @@ -291,7 +290,6 @@ def episode_title_dict(user_list: dict):

return episode_output_dict
except Exception:
logger("Skipping episode_output_dict", 1)
return {}


Expand Down Expand Up @@ -324,7 +322,6 @@ def movies_title_dict(user_list: dict):

return movies_output_dict
except Exception:
logger("Skipping movies_output_dict failed", 1)
return {}


Expand Down

0 comments on commit 348a0b8

Please sign in to comment.