From e22120fe99fdcbf02e1e3a6ff73be4ec2f1c18b7 Mon Sep 17 00:00:00 2001 From: Benexl Date: Sun, 26 Oct 2025 23:19:36 +0300 Subject: [PATCH] fix(allanime-anime-provider-utils): pyright errors --- viu_media/libs/provider/anime/allanime/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/viu_media/libs/provider/anime/allanime/utils.py b/viu_media/libs/provider/anime/allanime/utils.py index 49687a9..f1e60b0 100644 --- a/viu_media/libs/provider/anime/allanime/utils.py +++ b/viu_media/libs/provider/anime/allanime/utils.py @@ -88,4 +88,5 @@ def decode_hex_string(hex_string): # Decode each hex pair decoded_chars = [hex_to_char.get(pair.lower(), pair) for pair in hex_pairs] - return "".join(decoded_chars) + # TODO: Better type handling + return "".join(decoded_chars) # type: ignore