Skip to content

Commit b8a27f0

Browse files
author
nina.loser
committed
linter
1 parent 007da0f commit b8a27f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plugins/modules/vmware_datastore_cluster.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# SPDX-License-Identifier: GPL-3.0-or-later
88

99
from __future__ import absolute_import, division, print_function
10-
__metaclass__ = type
1110

11+
__metaclass__ = type
1212

1313
DOCUMENTATION = r'''
1414
---
@@ -346,7 +346,7 @@ def ensure(self):
346346

347347
if keep_vmdks_together != currentPodConfig.defaultIntraVmAffinity:
348348
sdrs_spec.podConfigSpec.defaultIntraVmAffinity = keep_vmdks_together
349-
results['result'] += results['result'] + " Changed VMDK affinity to '%s'." % keep_vmdks_together
349+
results['result'] += results['result'] + " Changed VMDK affinity to '%s'." % keep_vmdks_together
350350
change = True
351351

352352
if enable_io_loadbalance != currentPodConfig.ioLoadBalanceEnabled:
@@ -356,7 +356,7 @@ def ensure(self):
356356

357357
if loadbalance_interval != currentPodConfig.loadBalanceInterval:
358358
sdrs_spec.podConfigSpec.loadBalanceInterval = loadbalance_interval
359-
results['result'] += results['result'] + " Changed load balance interval to '%s' minutes." % loadbalance_interval
359+
results['result'] += results['result'] + " Changed load balance interval to '%s' minutes." % loadbalance_interval
360360
change = True
361361

362362
# Automation overrides
@@ -660,7 +660,7 @@ def main():
660660
vm_name=dict(type='str', required=True),
661661
keep_vmdks_together=dict(type='bool', default=None),
662662
automation_level=dict(type='str', choices=['none', 'automated', 'manual', 'disabled'], default='none'))
663-
)
663+
)
664664
)
665665
)
666666
module = AnsibleModule(

0 commit comments

Comments
 (0)