Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
lru_cache -> cache
  • Loading branch information
alexmojaki authored Sep 9, 2025
commit 85e5d6d55750ba1b3fa6a7f7cf2d1f25730d88fc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from functools import lru_cache
from functools import cache

# FIXME: Use importlib.metadata (not importlib_metadata)
# when support for 3.11 is dropped if the rest of
Expand All @@ -31,7 +31,7 @@
)


@lru_cache()
@cache
def _original_entry_points_cached():
return original_entry_points()

Expand Down
Loading