diff --git a/processor.py b/processor.py index 61a22f7..9397cbe 100644 --- a/processor.py +++ b/processor.py @@ -148,7 +148,10 @@ class TVShowProcessor(Processor): # Add the episode to the local database as imported, so it can be skipped, # if the process is repeated syncedEpisodesTable.insert({"episodeId": tv_time_show.episode_id}) - logging.info(f"'{tv_time_show.name}' marked as seen") + logging.info( + f"'{tv_time_show.name} Season {tv_time_show.season_number}," + f" Episode {tv_time_show.episode_number}' marked as seen" + ) def _handle_index_error(self, tv_time_show: TVTimeTVShow, trakt_show: TraktTVShow, progress: float) -> None: tv_show_slug = trakt_show.to_json()["shows"][0]["ids"]["ids"]["slug"] diff --git a/searcher.py b/searcher.py index 7636676..382b8f0 100644 --- a/searcher.py +++ b/searcher.py @@ -198,10 +198,7 @@ class Searcher(ABC): while True: try: # Get the user's selection, either a numerical input, or a string 'SKIP' value - index_selected = input( - "Please make a selection from above (or enter SKIP):" - ) - + index_selected = input("Please make a selection from above (or enter SKIP): ") if index_selected == "SKIP": break