1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-21 13:37:34 +00:00

no log: Fix anidb enrichment return type (#2472)

This commit is contained in:
Anderson Shindy Oki 2024-04-25 09:57:39 +09:00 committed by GitHub
parent 5e0433834e
commit 0bdfcd0eda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,7 +53,7 @@ class AniDBClient(object):
]
if not animes:
return None
return None, None
# Sort the anime by offset in ascending order
animes.sort(key=lambda a: a.episode_offset)