@@ -369,7 +369,7 @@ def process_events(self, event: console.ConsoleEvent) -> None:
369369
370370 def notify_success (
371371 self , sqlmesh_context : SQLMeshContext
372- ) -> t .Iterator [dg .MaterializeResult ]:
372+ ) -> t .Iterator [dg .MaterializeResult [ t . Any ] ]:
373373 notify = self ._tracker .notify_queue_next ()
374374
375375 while notify is not None :
@@ -412,7 +412,7 @@ def create_materialize_result(
412412 context : dg .AssetExecutionContext ,
413413 asset_key : dg .AssetKey ,
414414 current_materialization_status : ModelMaterializationStatus ,
415- ) -> dg .MaterializeResult :
415+ ) -> dg .MaterializeResult [ t . Any ] :
416416 last_materialization = context .instance .get_latest_materialization_event (
417417 asset_key
418418 )
@@ -598,7 +598,7 @@ def run(
598598 plan_options : PlanOptions | None = None ,
599599 run_options : RunOptions | None = None ,
600600 materializations_enabled : bool = True ,
601- ) -> t .Iterable [dg .MaterializeResult ]:
601+ ) -> t .Iterable [dg .MaterializeResult [ t . Any ] ]:
602602 """Execute SQLMesh based on the configuration given"""
603603 plan_options = plan_options or {}
604604 run_options = run_options or {}
0 commit comments