Skip to content

Commit

Permalink
stats: utils: fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
yashlamba committed Sep 20, 2023
1 parent 4459895 commit 21c681c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions site/zenodo_rdm/stats/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,10 @@
"""Statistics utilities."""

import itertools
from functools import lru_cache

from invenio_rdm_records.proxies import current_rdm_records_service

try:
from functools import lru_cache
except ImportError:
from functools32 import lru_cache


def chunkify(iterable, n):
"""Create equally sized tuple-chunks from an iterable."""
Expand Down

0 comments on commit 21c681c

Please sign in to comment.