diff options
author | JayZed <[email protected]> | 2024-12-09 16:32:51 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-12-09 16:32:51 -0500 |
commit | a7df6a9c6213cbb16ffc212f22aa3ae4c82599dd (patch) | |
tree | 91d2efa7885e41de7f6df443fe4d58f615e0f4a6 | |
parent | 137d61930d6d570515b5d3a4149c19f6206b6aea (diff) | |
download | bazarr-a7df6a9c6213cbb16ffc212f22aa3ae4c82599dd.tar.gz bazarr-a7df6a9c6213cbb16ffc212f22aa3ae4c82599dd.zip |
Fixed EmbeddedSubtitles provider results caching
-rw-r--r-- | custom_libs/subliminal_patch/providers/embeddedsubtitles.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/custom_libs/subliminal_patch/providers/embeddedsubtitles.py b/custom_libs/subliminal_patch/providers/embeddedsubtitles.py index 943607735..8de224729 100644 --- a/custom_libs/subliminal_patch/providers/embeddedsubtitles.py +++ b/custom_libs/subliminal_patch/providers/embeddedsubtitles.py @@ -255,8 +255,6 @@ class EmbeddedSubtitlesProvider(Provider): class _MemoizedFFprobeVideoContainer(FFprobeVideoContainer): - # 128 is the default value for maxsize since Python 3.8. We ste it here for previous versions. - @functools.lru_cache(maxsize=128) def get_subtitles(self, *args, **kwargs): return super().get_subtitles(*args, **kwargs) |