Skip to content

Commit f46b724

Browse files
authored
Update xlsw.py
W291 trailing whitespace: fixed
1 parent 4b9426d commit f46b724

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyexcel_xls/xlsw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def write_row(self, array):
5656
elif isinstance(value, datetime.timedelta):
5757
value = value.days + value.seconds / 86_400
5858
style = XFStyle()
59-
style.num_format_str = DEFAULT_LONGTIME_FORMAT
59+
style.num_format_str = DEFAULT_LONGTIME_FORMAT
6060
elif isinstance(value, datetime.date):
6161
tmp_array = [value.year, value.month, value.day]
6262
value = xlrd.xldate.xldate_from_date_tuple(tmp_array, 0)

0 commit comments

Comments
 (0)