Skip to content

Commit

Permalink
change maxsize of copy_unhashable
Browse files Browse the repository at this point in the history
  • Loading branch information
m-rauen committed Dec 5, 2024
1 parent 7382ef7 commit 1dfe929
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion overreact/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

__docformat__ = "restructuredtext"

#import pkg_resources as _pkg_resources
from importlib.metadata import version

from overreact.api import (
Expand Down
2 changes: 1 addition & 1 deletion overreact/_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import overreact as rx
from overreact import _constants as constants

def copy_unhashable(maxsize=100000, typed=False):
def copy_unhashable(maxsize=128, typed=False):
"""Creates a copy of the arrays received by lru_cache and make them hashable, therefore maintaining the arrays to be passed and caching prototypes of those arrays.
Insipired by:
Expand Down

0 comments on commit 1dfe929

Please sign in to comment.