8000 PEP8 fix · matplotlib/matplotlib@de8fe2c · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit de8fe2c

Browse files
committed
PEP8 fix
1 parent 1a774c9 commit de8fe2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/tests/test_collections.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,8 @@ def test_regularpolycollection_scale():
536536

537537
class SquareCollection(mcollections.RegularPolyCollection):
538538
def __init__(self, **kwargs):
539-
super(SquareCollection, self).__init__(4, rotation=np.pi/4., **kwargs)
539+
super(SquareCollection, self).__init__(
540+
4, rotation=np.pi/4., **kwargs)
540541

541542
def get_transform(self):
542543
"""Return transform scaling circle areas to data space."""

0 commit comments

Comments
 (0)
0