Skip to content

Commit

Permalink
fixed typo in is_file_list_type
Browse files Browse the repository at this point in the history
  • Loading branch information
o-smirnov committed Feb 4, 2024
1 parent 1c5c78c commit 6498b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scabha/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def validate_parameters(params: Dict[str, Any], schemas: Dict[str, Any],
if schema.is_output and schema.mkdir:
if schema.is_file_type:
files = [value]
elif schema.is_filelist_type:
elif schema.is_file_list_type:
files = value
else:
continue
Expand Down

0 comments on commit 6498b8a

Please sign in to comment.