Skip to content

Commit 97e4135

Browse files
authored
TST: doctest fix for pandas.io.formats.style_render._parse_latex_table_styles (#42752)
1 parent 902000a commit 97e4135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/formats/style_render.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ def _parse_latex_table_styles(table_styles: CSSStyles, selector: str) -> str | N
12511251
12521252
Examples
12531253
--------
1254-
>>> table_styles = [{'selector': 'foo', 'props': [('attr','value')],
1254+
>>> table_styles = [{'selector': 'foo', 'props': [('attr','value')]},
12551255
... {'selector': 'bar', 'props': [('attr', 'overwritten')]},
12561256
... {'selector': 'bar', 'props': [('a1', 'baz'), ('a2', 'ignore')]}]
12571257
>>> _parse_latex_table_styles(table_styles, selector='bar')

0 commit comments

Comments
 (0)