Skip to content

Commit 20620ef

Browse files
leejjoonQuLogic
andauthored
Update lib/matplotlib/artist.py
Co-authored-by: Elliott Sales de Andrade <[email protected]>
1 parent ab776e5 commit 20620ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/artist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ def set_rasterized(self, rasterized):
950950
"""
951951
supports_rasterization = getattr(self.draw,
952952
"_supports_rasterization", False)
953-
if (rasterized and not supports_rasterization):
953+
if rasterized and not supports_rasterization:
954954
_api.warn_external(f"Rasterization of '{self}' will be ignored")
955955

956956
self._rasterized = rasterized

0 commit comments

Comments
 (0)