From b5aeed926879d9c3f7d9d5b50d2c0adaec1d7b61 Mon Sep 17 00:00:00 2001 From: Abdist Date: Sat, 18 Jan 2025 15:47:19 +0100 Subject: [PATCH] Update utils.py strip() was not neccessary --- fastanime/cli/interfaces/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastanime/cli/interfaces/utils.py b/fastanime/cli/interfaces/utils.py index 5d2b010..ca8c324 100644 --- a/fastanime/cli/interfaces/utils.py +++ b/fastanime/cli/interfaces/utils.py @@ -168,7 +168,7 @@ def write_search_results( template = textwrap.dedent(template) template = f""" {template} - echo "{textwrap.fill(clean_html(anime.get('description', '').strip()).replace('"', SINGLE_QUOTE), width=45)}" + echo "{textwrap.fill(clean_html(anime.get('description', '')).replace('"', SINGLE_QUOTE), width=45)}" """ future_to_task[executor.submit(save_info_from_str, template, title)] = title