(iterable: list[T], size: int)
| 24 | |
| 25 | |
| 26 | def chunked(iterable: list[T], size: int) -> Generator[list[T]]: |
| 27 | for i in range(0, len(iterable), size): |
| 28 | yield iterable[i : i + size] |
| 29 | |
| 30 | |
| 31 | def to_invert_case(s: str) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected