Lint: E201 whitespace after '('

This commit is contained in:
2020-11-07 12:39:27 -05:00
parent e333f2b935
commit c88965e898
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({