We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7266c7 commit b8d750fCopy full SHA for b8d750f
ci/code_checks.sh
@@ -121,7 +121,8 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
121
pandas/io/parsers/ \
122
pandas/io/sas/ \
123
pandas/io/sql.py \
124
- pandas/tseries/
+ pandas/tseries/ \
125
+ pandas/io/formats/style_render.py
126
RET=$(($RET + $?)) ; echo $MSG "DONE"
127
128
fi
pandas/io/formats/style_render.py
@@ -1334,9 +1334,9 @@ def _parse_latex_header_span(
1334
1335
Examples
1336
--------
1337
- >>> cell = {'display_vale':'text', 'attributes': 'colspan="3"'}
+ >>> cell = {'display_value':'text', 'attributes': 'colspan="3"'}
1338
>>> _parse_latex_header_span(cell, 't', 'c')
1339
- '\multicol{3}{c}{text}'
+ '\\multicolumn{3}{c}{text}'
1340
"""
1341
if "attributes" in cell:
1342
attrs = cell["attributes"]
0 commit comments