Skip to content

Commit 39d1d11

Browse files
committed
Fix definition of STRING_OR_TUPLE_DICT
1 parent 555eaca commit 39d1d11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

easybuild/framework/easyconfig/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -603,8 +603,8 @@ def ensure_iterable_license_specs(specs):
603603
))
604604
STRING_OR_TUPLE_DICT = (dict, as_hashable(
605605
{
606-
'elem_types': [str],
607-
'key_types': [str, TUPLE_OF_STRINGS],
606+
'key_types': [str],
607+
'elem_types': [str, TUPLE_OF_STRINGS],
608608
}
609609
))
610610
STRING_OR_TUPLE_OR_DICT_LIST = (list, as_hashable({'elem_types': [str, tuple, STRING_DICT]}))

0 commit comments

Comments
 (0)