Skip to content

Commit 698e69c

Browse files
authored
add return type to enable_sso (#36709)
* fixing sweep job service response parsing issue * fixing sweep job service response parsing issue * raising a work around for cmd job and spark job name lowering case * fixing black issue * fixing serialization issue in sweep job * include black fix * found and fix the issue in compute validation * fixing a corrupt wokspace arm template * fixing the failed test case * updating the date for 1.18.0 release * removing empty section * adding in progress version details * adding IDC code reviewers * correcting the directory path * lint fix * adding change log entry * addressing review comment * fixing ut * addressing api review comment
1 parent 234dbd5 commit 698e69c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/ml/azure-ai-ml/azure/ai/ml/operations/_compute_operations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def list_sizes(self, *, location: Optional[str] = None, compute_type: Optional[s
424424
@distributed_trace
425425
@monitor_with_activity(ops_logger, "Compute.enablesso", ActivityType.PUBLICAPI)
426426
@experimental
427-
def enable_sso(self, *, name: str, enable_sso: bool = True):
427+
def enable_sso(self, *, name: str, enable_sso: bool = True) -> None:
428428
"""enable sso for a compute instance.
429429
430430
:keyword name: Name of the compute instance.

0 commit comments

Comments
 (0)