We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10d84a9 + 427fadf commit d8f50ceCopy full SHA for d8f50ce
tools/shared_utils.py
@@ -45,7 +45,7 @@ def impldef_category_to_csr_category(
45
"""
46
result = IMPLDEF_CATEGORY_TO_CSR_CATEGORY.get(impldef_cat)
47
if result is None:
48
- allowed_str = ",".join(IMPLDEF_CATEGORY_TO_CSR_CATEGORY)
+ allowed_str = ", ".join(sorted(IMPLDEF_CATEGORY_TO_CSR_CATEGORY))
49
fatal(
50
f"No CSR category mapping for impl-def-category {impldef_cat!r}. "
51
f"Allowed impl-def-categories are: {allowed_str}"
0 commit comments