fix module name

This commit is contained in:
jxxghp
2024-05-16 14:20:18 +08:00
parent a740330e66
commit 43647e59a4
23 changed files with 97 additions and 4 deletions

View File

@ -39,6 +39,10 @@ class TheMovieDbModule(_ModuleBase):
self.category = CategoryHelper()
self.scraper = TmdbScraper(self.tmdb)
@staticmethod
def get_name() -> str:
return "TheMovieDb"
def stop(self):
self.cache.save()
self.tmdb.close()