Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
Chiara Rasi committed Dec 13, 2024
1 parent 3c64498 commit 9a2fc2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion schug/load/biomart.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ def xml_filters(filters: dict) -> List[str]:
value = filters[filter_name]
if not isinstance(value, str):
value = ",".join(value)
formatted_lines.append(f'<Filter name = "{filter_name}" value = "{value}"/>')
formatted_lines.append(
f'<Filter name = "{filter_name}" value = "{value}"/>'
)

return formatted_lines

Expand Down

0 comments on commit 9a2fc2d

Please sign in to comment.