Skip to content

Commit 4714831

Browse files
authored
Merge pull request matplotlib#30286 from brchristian/patch-1
Fix whitespace in _axes.py error message
2 parents 93a421e + d7c5c67 commit 4714831

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2296,8 +2296,8 @@ def _parse_bar_color_args(self, kwargs):
22962296
facecolor = mcolors.to_rgba_array(facecolor)
22972297
except ValueError as err:
22982298
raise ValueError(
2299-
"'facecolor' or 'color' argument must be a valid color or"
2300-
"sequence of colors."
2299+
"'facecolor' or 'color' argument must be a valid color or "
2300+
"sequence of colors."
23012301
) from err
23022302

23032303
return facecolor, edgecolor

0 commit comments

Comments
 (0)