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 f5e7b21 commit d72ef38Copy full SHA for d72ef38
lib/matplotlib/tests/test_artist.py
@@ -88,8 +88,9 @@ def test_collection_transform_of_none():
88
89
# providing an IdentityTransform puts the ellipse in device coordinates
90
e = mpatches.Ellipse(xy_pix, width=100, height=100)
91
- c = mcollections.PatchCollection([e], transform=mtransforms.IdentityTransform(),
92
- alpha=0.5)
+ c = mcollections.PatchCollection([e],
+ transform=mtransforms.IdentityTransform(),
93
+ alpha=0.5)
94
ax.add_collection(c)
95
assert isinstance(c._transOffset, mtransforms.IdentityTransform)
96
0 commit comments