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 Oct 29, 2023
1 parent b52ea85 commit 41a9de5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/biocframe/BiocFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,9 +532,9 @@ def _slice(
new_row_names = _slice_or_index(new_row_names, new_row_indices)
new_number_of_rows = len(new_row_names)
else:
new_number_of_rows = len(_slice_or_index(
list(range(self.shape[0])), new_row_indices
))
new_number_of_rows = len(
_slice_or_index(list(range(self.shape[0])), new_row_indices)
)

for k, v in new_data.items():
if hasattr(v, "shape"):
Expand Down

0 comments on commit 41a9de5

Please sign in to comment.