Skip to content

Commit 13b1549

Browse files
achauhan-sccl0lawrence
authored andcommitted
Api Review comment fix. (Azure#39567)
* api review comment for kwargs in job entity * remove unuse entry in change log
1 parent 7f97584 commit 13b1549

File tree

1 file changed

+2
-10
lines changed
  • sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job

1 file changed

+2
-10
lines changed

sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/job.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,10 @@
1717
from azure.ai.ml._restclient.v2023_04_01_preview.models import JobBase, JobService
1818
from azure.ai.ml._restclient.v2023_04_01_preview.models import JobType as RestJobType
1919
from azure.ai.ml._restclient.v2024_01_01_preview.models import JobBase as JobBase_2401
20-
from azure.ai.ml._restclient.v2024_01_01_preview.models import (
21-
JobType as RestJobType_20240101Preview,
22-
)
20+
from azure.ai.ml._restclient.v2024_01_01_preview.models import JobType as RestJobType_20240101Preview
2321
from azure.ai.ml._utils._html_utils import make_link, to_html
2422
from azure.ai.ml._utils.utils import dump_yaml_to_file
25-
from azure.ai.ml.constants._common import (
26-
BASE_PATH_CONTEXT_KEY,
27-
PARAMS_OVERRIDE_KEY,
28-
CommonYamlFields,
29-
)
23+
from azure.ai.ml.constants._common import BASE_PATH_CONTEXT_KEY, PARAMS_OVERRIDE_KEY, CommonYamlFields
3024
from azure.ai.ml.constants._compute import ComputeType
3125
from azure.ai.ml.constants._job.job import JobServices, JobType
3226
from azure.ai.ml.entities._mixins import TelemetryMixin
@@ -76,8 +70,6 @@ class Job(Resource, ComponentTranslatableMixin, TelemetryMixin):
7670
:type services: Optional[dict[str, ~azure.ai.ml.entities.JobService]]
7771
:param compute: Information about the compute resources associated with the job.
7872
:type compute: Optional[str]
79-
:keyword kwargs: A dictionary of additional configuration parameters.
80-
:paramtype kwargs: dict
8173
"""
8274

8375
def __init__(

0 commit comments

Comments
 (0)