Skip to content

Commit 99a81f9

Browse files
linting error
1 parent d2be63a commit 99a81f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/sparse/frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def sp_maker(x, index=None):
433433
elif isinstance(value, SparseArray):
434434
if len(value) != len(self.index):
435435
raise ValueError('Length of values does not match '
436-
'length of index')
436+
'length of index')
437437
clean = value
438438

439439
elif hasattr(value, '__iter__'):
@@ -444,7 +444,7 @@ def sp_maker(x, index=None):
444444
else:
445445
if len(value) != len(self.index):
446446
raise ValueError('Length of values does not match '
447-
'length of index')
447+
'length of index')
448448
clean = sp_maker(value)
449449

450450
# Scalar

0 commit comments

Comments
 (0)