Skip to content

Commit

Permalink
Fix LRU cache
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Aug 23, 2024
1 parent 933b53d commit c747cc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion istub/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
HASH_RE = re.compile(r"0x[0-9a-f]{12}")


@lru_cache()
@lru_cache(maxsize=None)
def get_replace_paths() -> List[str]:
"""
Generate a list of paths to replace in snapshot.
Expand Down

0 comments on commit c747cc4

Please sign in to comment.