We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff71fa commit afb46a6Copy full SHA for afb46a6
pandas/tests/io/formats/style/test_style.py
@@ -895,8 +895,10 @@ def test_maybe_convert_css_to_tuples(self):
895
assert maybe_convert_css_to_tuples("a:;c: ") == expected
896
897
def test_maybe_convert_css_to_tuples_err(self):
898
- msg = "Styles supplied as string must follow CSS rule formats, " \
899
- "for example 'attr: val;'. 'err' was given."
+ msg = (
+ "Styles supplied as string must follow CSS rule formats, "
900
+ "for example 'attr: val;'. 'err' was given."
901
+ )
902
with pytest.raises(ValueError, match=msg):
903
maybe_convert_css_to_tuples("err")
904
0 commit comments