Skip to content

Commit 7a64c6e

Browse files
committed
[style] - Update code styling
1 parent a0c4c8c commit 7a64c6e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/azure-cli/azure/cli/command_modules/vm/custom.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1399,10 +1399,12 @@ def get_vm_by_aaz(cmd, resource_group_name, vm_name, expand=None):
13991399

14001400
return Show(cli_ctx=cmd.cli_ctx)(command_args=command_args)
14011401

1402+
14021403
def get_vm(cmd, resource_group_name, vm_name, expand=None):
14031404
client = _compute_client_factory(cmd.cli_ctx)
14041405
return client.virtual_machines.get(resource_group_name, vm_name, expand=expand)
14051406

1407+
14061408
def get_vm_to_update(cmd, resource_group_name, vm_name):
14071409
client = _compute_client_factory(cmd.cli_ctx)
14081410
vm = client.virtual_machines.get(resource_group_name, vm_name)

src/azure-cli/azure/cli/command_modules/vm/operations/vm.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# Licensed under the MIT License. See License.txt in the project root for license information.
44
# --------------------------------------------------------------------------------------------
55
# pylint: disable=no-self-use, line-too-long, protected-access, too-few-public-methods, unused-argument, too-many-statements, too-many-branches, too-many-locals
6-
from typing import override
76
import json
87

98
from knack.log import get_logger

0 commit comments

Comments
 (0)