File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,8 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
121
121
pandas/io/parsers/ \
122
122
pandas/io/sas/ \
123
123
pandas/io/sql.py \
124
- pandas/tseries/
124
+ pandas/tseries/ \
125
+ pandas/io/formats/style_render.py
125
126
RET=$(( $RET + $? )) ; echo $MSG " DONE"
126
127
127
128
fi
Original file line number Diff line number Diff line change @@ -1334,9 +1334,9 @@ def _parse_latex_header_span(
1334
1334
1335
1335
Examples
1336
1336
--------
1337
- >>> cell = {'display_vale ':'text', 'attributes': 'colspan="3"'}
1337
+ >>> cell = {'display_value ':'text', 'attributes': 'colspan="3"'}
1338
1338
>>> _parse_latex_header_span(cell, 't', 'c')
1339
- '\multicol {3}{c}{text}'
1339
+ '\\multicolumn {3}{c}{text}'
1340
1340
"""
1341
1341
if "attributes" in cell :
1342
1342
attrs = cell ["attributes" ]
You can’t perform that action at this time.
0 commit comments