GapDetector

This commit is contained in:
2026-09-26 12:50:19 +03:00
parent 7f15d0e0ac
commit a136451568
12 changed files with 1209 additions and 272 deletions
+7
View File
@@ -22,3 +22,10 @@ LanguageLiteral = Literal[
Language.CPP,
Language.C,
]
def _normalize_language(raw: dict) -> dict:
lang = raw.get("language")
if isinstance(lang, dict) and isinstance(lang.get("name"), str):
lang["name"] = lang["name"].strip().lower()
return raw