We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6060ac8 commit 3866b8eCopy full SHA for 3866b8e
1 file changed
sqlmesh/core/context.py
@@ -2247,17 +2247,17 @@ def audit(
2247
self,
2248
start: TimeLike,
2249
end: TimeLike,
2250
+ execution_time: t.Optional[TimeLike] = None,
2251
*,
2252
models: t.Optional[t.Iterator[str]] = None,
- execution_time: t.Optional[TimeLike] = None,
2253
) -> bool:
2254
"""Audit models.
2255
2256
Args:
2257
start: The start of the interval to audit.
2258
end: The end of the interval to audit.
2259
- models: The models to audit. All models will be audited if not specified.
2260
execution_time: The date/time time reference to use for execution time. Defaults to now.
+ models: The models to audit. All models will be audited if not specified.
2261
2262
Returns:
2263
False if any of the audits failed, True otherwise.
0 commit comments