Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix argument name
  • Loading branch information
tehunter committed Oct 6, 2022
commit 62215016c7f10a10058fbcd5dbf0b49107486908
4 changes: 2 additions & 2 deletions pandas/tests/io/formats/style/test_style.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ def mi_styler_comp(mi_styler):
mi_styler.highlight_max(axis=None)
mi_styler.applymap_index(lambda x: "color: white;", axis=0)
mi_styler.applymap_index(lambda x: "color: black;", axis=1)
mi_styler.applymap_index(lambda x: "color: red;", axis=0, axis_names=0)
mi_styler.applymap_index(lambda x: "color: green;", axis=1, axis_names=1)
mi_styler.applymap_index(lambda x: "color: red;", axis=0, names=0)
mi_styler.applymap_index(lambda x: "color: green;", axis=1, names=1)
mi_styler.set_td_classes(
DataFrame(
[["a", "b"], ["a", "c"]], index=mi_styler.index, columns=mi_styler.columns
Expand Down