Skip to content

Commit

Permalink
Return floating names as list
Browse files Browse the repository at this point in the history
  • Loading branch information
jkanche committed Nov 29, 2023
1 parent 963309d commit 05bb412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/biocutils/print_wrapped_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def create_floating_names(
List of strings containing floating names.
"""
if names is not None:
return subset_sequence(names, indices)
return list(subset_sequence(names, indices))
else:
return ["[" + str(i) + "]" for i in indices]

Expand Down

0 comments on commit 05bb412

Please sign in to comment.