File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -261,9 +261,9 @@ def _submit_dryrun(
261261 raise ValueError (
262262 f"{ key } is controlled by aws_sagemaker_scheduler and is set to { job_def [key ]} "
263263 )
264- value = cfg .get (key ) # pyre- ignore[26]
264+ value = cfg .get (key ) # type: ignore
265265 if value is not None :
266- job_def [key ] = value
266+ job_def [key ] = value # type: ignore
267267
268268 req = AWSSageMakerJob (
269269 job_name = job_name ,
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ def load_actor_json(filename: str) -> List[RayActor]:
116116 return actors
117117
118118
119- def create_placement_group_async (replicas : List [RayActor ]) -> PlacementGroup :
119+ def create_placement_group_async (replicas : List [RayActor ]) -> PlacementGroup : # type: ignore
120120 """return a placement group reference, the corresponding placement group could be scheduled or pending"""
121121 bundles = []
122122 for replica in replicas :
You can’t perform that action at this time.
0 commit comments