Skip to content

Commit 1dd7e17

Browse files
committed
Add wrapping long lines in list table
1 parent 6748478 commit 1dd7e17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nf_core/test_datasets/list.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ def list_datasets(
7373
else:
7474
table = rich.table.Table()
7575
if generate_nf_path:
76-
table.add_column("Nextflow Import")
76+
table.add_column("Nextflow Import", overflow="fold")
7777
elif generate_dl_url:
78-
table.add_column("Download URL")
78+
table.add_column("Download URL", overflow="fold")
7979
else:
80-
table.add_column("File")
80+
table.add_column("File", overflow="fold")
8181

8282
for el in out:
8383
table.add_row(el)

0 commit comments

Comments
 (0)