We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2123a96 commit 304d8d4Copy full SHA for 304d8d4
pandas/io/excel/_base.py
@@ -146,7 +146,7 @@
146
each as a separate date column.
147
* list of lists. e.g. If [[1, 3]] -> combine columns 1 and 3 and parse as
148
a single date column.
149
- * dict, e.g. {{'foo' : [1, 3]}} -> parse columns 1, 3 as date and call
+ * dict, e.g. {'foo' : [1, 3]} -> parse columns 1, 3 as date and call
150
result 'foo'
151
152
If a column or index contains an unparseable date, the entire column or
@@ -536,7 +536,7 @@ class ExcelWriter(metaclass=abc.ABCMeta):
536
datetime_format : string, default None
537
Format string for datetime objects written into Excel files
538
(e.g. 'YYYY-MM-DD HH:MM:SS')
539
- mode : {'w' or 'a'}, default 'w'
+ mode : {'w', 'a'}, default 'w'
540
File mode to use (write or append).
541
542
.. versionadded:: 0.24.0
0 commit comments