Skip to content

_non_technical_columns

Internal helper
This page documents an internal implementation helper, not a primary public API.
Source code in src/fabricops_kit/technical_columns.py
77
78
79
def _non_technical_columns(df: Any) -> list[str]:
    technical = set(default_technical_columns())
    return [c for c in df.columns if c not in technical]