Skip to content

Commit 74f7683

Browse files
authored
update code coverage (#40272)
1 parent 9ec3770 commit 74f7683

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/ml/azure-ai-ml/azure/ai/ml/entities/_compute/compute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def _load(
180180
)
181181

182182
type_in_override = find_type_in_override(params_override) if params_override else None
183-
compute_type = type_in_override or data.get(CommonYamlFields.TYPE, None) # override takes the priority
183+
compute_type = type_in_override or data.get(CommonYamlFields.TYPE, None) # override takes the priority.
184184
if compute_type:
185185
if compute_type.lower() == ComputeType.VIRTUALMACHINE:
186186
_vm_load_from_dict: Compute = VirtualMachineCompute._load_from_dict(data, context, **kwargs)

sdk/ml/azure-ai-ml/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ mindependency = false
77
latestdependency = false
88
black = true
99
absolute_cov = true
10-
absolute_cov_percent = 65.50
10+
absolute_cov_percent = 65
1111

1212
[tool.isort]
1313
profile = "black"

0 commit comments

Comments
 (0)