Skip to content

Commit 12a5c7b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 10b2363 commit 12a5c7b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/arrays/sparse/accessor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,8 @@ def to_dense(self) -> DataFrame:
371371
"""
372372
data = {k: v.array.to_dense() for k, v in self._parent.items()}
373373
return self._parent._constructor(
374-
data, index=self._parent.index, columns=self._parent.columns)
374+
data, index=self._parent.index, columns=self._parent.columns
375+
)
375376

376377
def to_coo(self) -> spmatrix:
377378
"""

0 commit comments

Comments
 (0)