Skip to content

Commit

Permalink
reorder files extension in regex pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
noctillion committed Oct 29, 2024
1 parent 3967caf commit 1ba0364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chord_metadata_service/chord/workflows/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def boolean_input(id_: str, required: bool = True):
wm.WorkflowFileArrayInput(
id="document_files",
required=True,
pattern=r"^.*\.(pdf|csv|tsv|txt|docx|xlsx|jpeg|jpg|png|gif|md|html|markdown|mp3|m4a|mp4)$",
pattern=r"^.*\.(pdf|csv|tsv|txt|docx|xlsx|jpeg|jpg|png|gif|md|markdown|html|mp3|m4a|mp4)$",
),
],
))
Expand Down

0 comments on commit 1ba0364

Please sign in to comment.