Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 16, 2024
1 parent 27fc78b commit 65f0d5d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/biocframe/BiocFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -1181,9 +1181,7 @@ def to_pandas(self):
data=_data_copy, index=self._row_names, columns=self._column_names
)
else:
DataFrame(
data={}, index=range(self._number_of_rows)
)
DataFrame(data={}, index=range(self._number_of_rows))

@classmethod
def from_pandas(cls, input: "pandas.DataFrame") -> "BiocFrame":
Expand Down

0 comments on commit 65f0d5d

Please sign in to comment.