Skip to content

Commit cb14d5d

Browse files
authored
chore: fix load options utils (#650)
1 parent 32823f9 commit cb14d5d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/cache_dit/caching/utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ def load_cache_options_from_dict(cache_kwargs: dict, reset: bool = False) -> dic
5555
raise ValueError(f"Unsupported cache_type: {cache_type}.")
5656

5757
if "parallelism_config" in kwargs:
58-
from cache_dit.parallelism.parallel_config import (
59-
ParallelismConfig,
60-
)
58+
from cache_dit.parallelism import ParallelismConfig
6159

6260
parallelism_kwargs = kwargs.get("parallelism_config", {})
6361
cache_context_kwargs["parallelism_config"] = ParallelismConfig(**parallelism_kwargs)

0 commit comments

Comments
 (0)