File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 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
121121 pandas/io/parsers/ \
122122 pandas/io/sas/ \
123123 pandas/io/sql.py \
124- pandas/tseries/
124+ pandas/tseries/ \
125+ pandas/io/formats/style_render.py
125126 RET=$(( $RET + $? )) ; echo $MSG " DONE"
126127
127128fi
Original file line number Diff line number Diff line change @@ -1334,9 +1334,9 @@ def _parse_latex_header_span(
13341334
13351335 Examples
13361336 --------
1337- >>> cell = {'display_vale ':'text', 'attributes': 'colspan="3"'}
1337+ >>> cell = {'display_value ':'text', 'attributes': 'colspan="3"'}
13381338 >>> _parse_latex_header_span(cell, 't', 'c')
1339- '\multicol {3}{c}{text}'
1339+ '\\multicolumn {3}{c}{text}'
13401340 """
13411341 if "attributes" in cell :
13421342 attrs = cell ["attributes" ]
You can’t perform that action at this time.
0 commit comments