1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-29 07:22:12 +03:00

lru_cache for Python 3.8

This commit is contained in:
Charles
2025-09-26 17:42:01 +02:00
committed by GitHub
parent 2ca3cadb35
commit 39216fc91c

View File

@@ -21,7 +21,7 @@ import operator as op
import os
import sys
from collections import OrderedDict, defaultdict
from functools import cache
from functools import lru_cache as cache
from itertools import chain
from types import ModuleType
from typing import Any, Tuple, Union