File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 146
146
each as a separate date column.
147
147
* list of lists. e.g. If [[1, 3]] -> combine columns 1 and 3 and parse as
148
148
a single date column.
149
- * dict, e.g. {{ 'foo' : [1, 3]} } -> parse columns 1, 3 as date and call
149
+ * dict, e.g. {'foo' : [1, 3]} -> parse columns 1, 3 as date and call
150
150
result 'foo'
151
151
152
152
If a column or index contains an unparseable date, the entire column or
@@ -536,7 +536,7 @@ class ExcelWriter(metaclass=abc.ABCMeta):
536
536
datetime_format : string, default None
537
537
Format string for datetime objects written into Excel files
538
538
(e.g. 'YYYY-MM-DD HH:MM:SS')
539
- mode : {'w' or 'a'}, default 'w'
539
+ mode : {'w', 'a'}, default 'w'
540
540
File mode to use (write or append).
541
541
542
542
.. versionadded:: 0.24.0
You can’t perform that action at this time.
0 commit comments