Skip to content

Commit

Permalink
addressing api view comments (#35444)
Browse files Browse the repository at this point in the history
  • Loading branch information
ninghu committed May 1, 2024
1 parent cb9d015 commit 511aef3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sdk/ml/azure-ai-ml/azure/ai/ml/_ml_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ def from_config(
:paramtype path: Optional[Union[os.PathLike, str]]
:keyword file_name: The configuration file name to search for when path is a directory path. Defaults to
"config.json".
:paramtype file_name: Optional[str]
:paramtype file_name: str
:raises ~azure.ai.ml.exceptions.ValidationException: Raised if "config.json", or file_name if overridden,
cannot be found in directory. Details will be provided in the error message.
:returns: The client for an existing Azure ML Workspace.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Input(_InputOutputBase): # pylint: disable=too-many-instance-attributes
* 'direct': Pass in the URI as a string to be accessed at runtime
:paramtype mode: Optional[str]
:keyword path_on_compute: The access path of the data input for compute
:paramtype mode: Optional[str]
:paramtype path_on_compute: Optional[str]
:keyword default: The default value of the input. If a default is set, the input data will be optional.
:paramtype default: Union[str, int, float, bool]
:keyword min: The minimum value for the input. If a value smaller than the minimum is passed to the job, the job
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__( # type: ignore[misc]
* 'direct': Pass in the URI as a string
:paramtype mode: Optional[str]
:keyword path_on_compute: The access path of the data output for compute
:paramtype mode: Optional[str]
:paramtype path_on_compute: Optional[str]
:keyword description: The description of the output.
:paramtype description: Optional[str]
:keyword name: The name to be used to register the output as a Data or Model asset. A name can be set without
Expand Down

0 comments on commit 511aef3

Please sign in to comment.