diff options
Diffstat (limited to 'yt_dlp/compat/functools.py')
-rw-r--r-- | yt_dlp/compat/functools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/compat/functools.py b/yt_dlp/compat/functools.py index 36c9836..9668957 100644 --- a/yt_dlp/compat/functools.py +++ b/yt_dlp/compat/functools.py @@ -7,6 +7,6 @@ passthrough_module(__name__, 'functools') del passthrough_module try: - cache # >= 3.9 + _ = cache # >= 3.9 except NameError: cache = lru_cache(maxsize=None) |