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
1 changed files with 1 additions and 1 deletions

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)