Skip to content

Commit 06581ff

Browse files
committed
Fix type check for dependencies
1 parent 105f51e commit 06581ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/framework/easyconfig/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ def ensure_iterable_license_specs(specs):
608608
}
609609
))
610610
STRING_OR_TUPLE_OR_DICT_LIST = (list, as_hashable({'elem_types': [str, tuple, STRING_DICT]}))
611-
STRING_OR_TUPLE_OR_DICT_TUPLE = (tuple, as_hashable({'elem_types': [str, TUPLE_OF_STRINGS, STRING_DICT]}))
611+
STRING_OR_TUPLE_OR_DICT_TUPLE = (tuple, as_hashable({'elem_types': [str, TUPLE_OF_STRINGS, dict]}))
612612

613613
TOOLCHAIN_DICT = (dict, as_hashable({
614614
'elem_types': {

0 commit comments

Comments
 (0)