Module pdpipe.types

Custom types for pdpipe.

Expand source code
"""Custom types for pdpipe."""

from typing import Union, List, Callable


ColumnsParamType = Union[object, List[object], Callable]
ColumnLabelsType = Union[object, List[object]]