Skip to content

Commit 5247f7c

Browse files
committed
fix pr
1 parent 686a18f commit 5247f7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyreqif/xlsx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def write_excel_line(worksheet, item, row, cols, depth, basepath, format):
5454
_, height = im.size
5555
col_height += height
5656
im.close()
57-
worksheet.insert_image(row, cols.index(col), file, {'y_offset' : col_height-height}
57+
worksheet.insert_image(row, cols.index(col), file, {'y_offset' : col_height-height})
5858
except:
5959
print("Error with image: {}".format(file))
6060
worksheet.write_url(row, cols.index(col)+1, os.path.join(basepath,file), string="Link to picture")

0 commit comments

Comments
 (0)