MCPcopy Create free account
hub / github.com/Keeper-Security/Commander / _chunked

Function _chunked

keepercommander/nested_share_folder/acl_cache.py:54–56  ·  view source on GitHub ↗
(items: Sequence[str], size: int)

Source from the content-addressed store, hash-verified

52
53
54def _chunked(items: Sequence[str], size: int) -> Iterable[List[str]]:
55 for i in range(0, len(items), size):
56 yield list(items[i:i + size])
57
58
59def _warm_nsf_folder_chunk(params, cache, chunk: List[str]) -> None:

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected