Skip to content

_step

Internal helper
This page documents an internal implementation helper, not a primary public API.
Source code in src/fabricops_kit/lineage.py
49
50
def _step(source: str, target: str, transformation: str, source_type: str, target_type: str, confidence: str, lineno: int, ops: list[str], notes: str = "") -> dict[str, Any]:
    return {"source": source, "target": target, "transformation": transformation, "reason": "", "source_type": source_type, "target_type": target_type, "confidence": confidence, "notes": notes, "operation_types": ops, "code_refs": [f"line:{lineno}"]}