Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
jkanche committed Oct 20, 2023
1 parent 4dc3ea9 commit 6e22fc4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/biocframe/BiocFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,10 @@ def __repr__(self) -> str:
from rich.table import Table

table = Table(
title=f"BiocFrame with {self.dims[0]} row{'s' if self.dims[0] != 1 else ''} & {self.dims[1]} column{'s' if self.dims[1] != 1 else ''}",
title=(
f"BiocFrame with {self.dims[0]} row{'s' if self.dims[0] != 1 else ''}"
" & {self.dims[1]} column{'s' if self.dims[1] != 1 else ''}"
),
show_header=True,
)
if self.row_names is not None:
Expand Down

0 comments on commit 6e22fc4

Please sign in to comment.