File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 11import os
2+ from functools import cache
23
3- from anystore .functools import weakref_cache as cache
44from anystore .interface .rate_limit import RateLimit
55from anystore .logging import configure_logging , get_logger
66from anystore .store import get_store
Original file line number Diff line number Diff line change 55import signal
66import threading
77from datetime import datetime
8+ from functools import cache
89from random import randint
910
10- from anystore .functools import weakref_cache as cache
1111from anystore .logging import get_logger
1212from anystore .types import SDict , Uri
1313from anystore .util import ensure_uri , ensure_uuid , path_from_uri
Original file line number Diff line number Diff line change 77"""
88
99import re
10+ from functools import cache
1011from importlib import import_module
1112from importlib .util import module_from_spec , spec_from_file_location
1213from pathlib import Path
1314from typing import TYPE_CHECKING , Any , Callable
1415
15- from anystore .functools import weakref_cache as cache
16-
1716if TYPE_CHECKING :
1817 from memorious .logic .context import Context
1918
You can’t perform that action at this time.
0 commit comments