We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 686a18f commit 5247f7cCopy full SHA for 5247f7c
src/pyreqif/xlsx.py
@@ -54,7 +54,7 @@ def write_excel_line(worksheet, item, row, cols, depth, basepath, format):
54
_, height = im.size
55
col_height += height
56
im.close()
57
- worksheet.insert_image(row, cols.index(col), file, {'y_offset' : col_height-height}
+ worksheet.insert_image(row, cols.index(col), file, {'y_offset' : col_height-height})
58
except:
59
print("Error with image: {}".format(file))
60
worksheet.write_url(row, cols.index(col)+1, os.path.join(basepath,file), string="Link to picture")
0 commit comments