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 d2be63a commit 99a81f9Copy full SHA for 99a81f9
pandas/core/sparse/frame.py
@@ -433,7 +433,7 @@ def sp_maker(x, index=None):
433
elif isinstance(value, SparseArray):
434
if len(value) != len(self.index):
435
raise ValueError('Length of values does not match '
436
- 'length of index')
+ 'length of index')
437
clean = value
438
439
elif hasattr(value, '__iter__'):
@@ -444,7 +444,7 @@ def sp_maker(x, index=None):
444
else:
445
446
447
448
clean = sp_maker(value)
449
450
# Scalar
0 commit comments