Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/gt4py/eve/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@ def inner(*args, **kwargs): # type: ignore[no-untyped-def] # cast below restor

inner.cache_parameters = cached_func.cache_parameters # type: ignore[attr-defined] # mypy not aware of functools.lru_cache behavior
inner.cache_info = cached_func.cache_info # type: ignore[attr-defined] # mypy not aware of functools.lru_cache behavior
inner.cache_clear = cached_func.cache_clear # type: ignore[attr-defined] # mypy not aware of functools.cache_clear behavior

return typing.cast(Callable[_P, _T], inner)

Expand Down
Loading