Lint: E202 whitespace before ')'

This commit is contained in:
2020-11-07 12:58:54 -05:00
parent 3f242cd437
commit d2e5ede399
4 changed files with 11 additions and 11 deletions

View File

@ -529,7 +529,7 @@ class OVFParser(object):
# Handle the unit conversion
base_unit, action, multiple = disk_capacity_unit.split()
multiple_base, multiple_exponent = multiple.split('^')
disk_capacity = int(disk_capacity) * (int(multiple_base) ** int(multiple_exponent) )
disk_capacity = int(disk_capacity) * (int(multiple_base) ** int(multiple_exponent))
# Append the disk with all details to the list
disk_list.append({