Skip to content

Commit 5c27a0a

Browse files
Brian TuBrian Tu
Brian Tu
authored and
Brian Tu
committed
Fix overindentation
1 parent 03b2b7f commit 5c27a0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/indexes/numeric.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ def _convert_tolerance(self, tolerance):
7777
if tolerance.ndim > 0:
7878
raise ValueError(('tolerance argument for %s must contain '
7979
'numeric elements if it is list type') %
80-
(type(self).__name__,))
80+
(type(self).__name__,))
8181
else:
8282
raise ValueError(('tolerance argument for %s must be numeric '
8383
'if it is a scalar: %r') %
84-
(type(self).__name__, tolerance))
84+
(type(self).__name__, tolerance))
8585
return tolerance
8686

8787
@classmethod

0 commit comments

Comments
 (0)