Skip to content

Commit afeed1d

Browse files
authored
linter
1 parent a798900 commit afeed1d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

plugins/module_utils/vmware.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -380,8 +380,7 @@ def get_folder_abs_path(dcpath, dcname, folder):
380380
folder = folder.rstrip('/')
381381

382382
# Check for full path first in case it was already supplied
383-
if (folder.startswith(dcpath + dcname + '/vm') or
384-
folder.startswith(dcpath + '/' + dcname + '/vm')):
383+
if folder.startswith(dcpath + dcname + '/vm') or folder.startswith(dcpath + '/' + dcname + '/vm'):
385384
fullpath = folder
386385
elif folder.startswith('/vm/') or folder == '/vm':
387386
fullpath = "%s%s%s" % (dcpath, dcname, folder)

0 commit comments

Comments
 (0)