Skip to content

Commit 304d8d4

Browse files
deepyamanWillAyd
authored andcommitted
Remove extraneous brackets (#26375)
1 parent 2123a96 commit 304d8d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/excel/_base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
each as a separate date column.
147147
* list of lists. e.g. If [[1, 3]] -> combine columns 1 and 3 and parse as
148148
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
150150
result 'foo'
151151
152152
If a column or index contains an unparseable date, the entire column or
@@ -536,7 +536,7 @@ class ExcelWriter(metaclass=abc.ABCMeta):
536536
datetime_format : string, default None
537537
Format string for datetime objects written into Excel files
538538
(e.g. 'YYYY-MM-DD HH:MM:SS')
539-
mode : {'w' or 'a'}, default 'w'
539+
mode : {'w', 'a'}, default 'w'
540540
File mode to use (write or append).
541541
542542
.. versionadded:: 0.24.0

0 commit comments

Comments
 (0)