Skip to content

Commit 00d3458

Browse files
authored
fixed implicit str concatination
1 parent a02544b commit 00d3458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/formats/style_render.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2072,7 +2072,7 @@ def maybe_convert_css_to_tuples(style: CSSProperties) -> CSSList:
20722072
if ":" not in style:
20732073
raise ValueError(
20742074
"Styles supplied as string must follow CSS rule formats, "
2075-
+f"for example 'attr: val;'. '{style}' was given."
2075+
f"for example 'attr: val;'. '{style}' was given."
20762076
)
20772077
s = style.split(";")
20782078
return [

0 commit comments

Comments
 (0)