We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f906fb8 commit c32290fCopy full SHA for c32290f
1 file changed
src/cachier/config.py
@@ -65,7 +65,7 @@ def _update_with_defaults(
65
return param
66
67
68
-def set_default_params(**params: Mapping) -> None:
+def set_default_params(**params: Any) -> None:
69
"""Configure default parameters applicable to all memoized functions."""
70
# It is kept for backwards compatibility with desperation warning
71
import warnings
@@ -79,7 +79,7 @@ def set_default_params(**params: Mapping) -> None:
79
set_global_params(**params)
80
81
82
-def set_global_params(**params: Mapping) -> None:
+def set_global_params(**params: Any) -> None:
83
"""Configure global parameters applicable to all memoized functions.
84
85
This function takes the same keyword parameters as the ones defined in the
0 commit comments