hoodini.utils.collections

Small collection helpers.

1"""Small collection helpers."""
2
3from __future__ import annotations
4
5
6def flat(seq):
7    return [item for sublist in seq for item in sublist]
def flat(seq):
7def flat(seq):
8    return [item for sublist in seq for item in sublist]