From d17d4a4440e2ae1538ef2a4542314aa7f117ea2d Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 24 Aug 2023 11:56:47 -0700 Subject: [PATCH] Update backports-functools-lru-cache==1.6.6 --- lib/backports/__init__.py | 6 +----- lib/backports/functools_lru_cache.py | 1 - 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/backports/__init__.py b/lib/backports/__init__.py index b09491b2..0d1f7edf 100644 --- a/lib/backports/__init__.py +++ b/lib/backports/__init__.py @@ -1,5 +1 @@ -# A Python "namespace package" http://www.python.org/dev/peps/pep-0382/ -# This always goes inside of a namespace package's __init__.py -from pkgutil import extend_path - -__path__ = extend_path(__path__, __name__) # type: ignore +__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore diff --git a/lib/backports/functools_lru_cache.py b/lib/backports/functools_lru_cache.py index 8be4515f..1b83fe99 100644 --- a/lib/backports/functools_lru_cache.py +++ b/lib/backports/functools_lru_cache.py @@ -89,7 +89,6 @@ def lru_cache(maxsize=100, typed=False): # noqa: C901 # to allow the implementation to change (including a possible C version). def decorating_function(user_function): - cache = dict() stats = [0, 0] # make statistics updateable non-locally HITS, MISSES = 0, 1 # names for the stats fields