Skip to content

Commit 2a63df1

Browse files
authored
E501 line too long: corrected
1 parent ad14702 commit 2a63df1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pyexcel_ods3/odsw.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,12 @@ def write_row(self, array):
4545
cell = "PT%02dH%02dM%02dS" % (hours, minutes, seconds)
4646
value_type = "time"
4747
if value_type == 'datetime':
48-
cell = "%04d-%02d-%02dT%02d:%02d:%02d" % (cell.year, cell.month, cell.day,
49-
cell.hour, cell.minute, cell.second)
48+
cell = "%04d-%02d-%02dT%02d:%02d:%02d" % (cell.year,
49+
cell.month,
50+
cell.day,
51+
cell.hour,
52+
cell.minute,
53+
cell.second)
5054
value_type = "date"
5155
elif value_type == "float":
5256
if cell > MAX_INTEGER:

0 commit comments

Comments
 (0)