feat: finetune elementary implementation

This commit is contained in:
Stijnvandenbroek
2026-03-04 22:26:35 +00:00
parent 0b9b408714
commit 5166a183b4
5 changed files with 57 additions and 7 deletions

View File

@@ -2,10 +2,14 @@ from data_platform.ops.check_source_freshness import (
SourceFreshnessConfig,
check_source_freshness,
)
from data_platform.ops.elementary import elementary_generate_report
from data_platform.ops.elementary import (
elementary_generate_report,
elementary_run_models,
)
__all__ = [
"check_source_freshness",
"SourceFreshnessConfig",
"elementary_run_models",
"elementary_generate_report",
]