Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fa69001

Browse files
committed
Whitespace fixes.
1 parent 66c46c7 commit fa69001

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

lib/matplotlib/projections/polar.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ def __init__(self, axis=None, use_rmin=True,
4242
def __str__(self):
4343
return ("{}(\n"
4444
"{},\n"
45-
" use_rmin={},\n"
46-
" _apply_theta_transforms={})"
45+
" use_rmin={},\n"
46+
" _apply_theta_transforms={})"
4747
.format(type(self).__name__,
4848
mtransforms._indent_str(self._axis),
4949
self._use_rmin,
@@ -150,8 +150,8 @@ def __init__(self, axis=None, use_rmin=True,
150150
def __str__(self):
151151
return ("{}(\n"
152152
"{},\n"
153-
" use_rmin={},\n"
154-
" _apply_theta_transforms={})"
153+
" use_rmin={},\n"
154+
" _apply_theta_transforms={})"
155155
.format(type(self).__name__,
156156
mtransforms._indent_str(self._axis),
157157
self._use_rmin,

lib/matplotlib/transforms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def __setstate__(self, data_dict):
122122

123123
def __copy__(self, *args):
124124
raise NotImplementedError(
125-
"TransformNode instances can not be copied. " +
125+
"TransformNode instances can not be copied. "
126126
"Consider using frozen() instead.")
127127
__deepcopy__ = __copy__
128128

0 commit comments

Comments
 (0)