diff --git a/Src/Api/animeunity/__init__.py b/Src/Api/animeunity/__init__.py index 8a54f70..d30fa30 100644 --- a/Src/Api/animeunity/__init__.py +++ b/Src/Api/animeunity/__init__.py @@ -24,12 +24,10 @@ def search(): # Select title from list select_title = run_get_select_title() - if select_title.type == 'TV': - download_series(select_title) - - else: + if select_title.type == 'Movie': download_film(select_title) - + else: + download_series(select_title) else: console.print(f"\n[red]Nothing matching was found for[white]: [purple]{string_to_search}")