Skip to content

Commit 09f757b

Browse files
committed
Add missing function annotation
1 parent 5cc722d commit 09f757b

File tree

1 file changed

+1
-1
lines changed
  • merizrizal/idcloudhost/plugins/modules

1 file changed

+1
-1
lines changed

merizrizal/idcloudhost/plugins/modules/vm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ def _resize_disks(self, current_vm) -> dict:
493493

494494
return vm
495495

496-
def _activate_vm(self, vm, active=True):
496+
def _activate_vm(self, vm, active=True) -> dict:
497497
action = 'start' if active else 'stop'
498498
url, url_headers = self._init_url(f'{self._endpoint_url}/{action}')
499499
url_headers.update({'Content-Type': 'application/x-www-form-urlencoded'})

0 commit comments

Comments
 (0)