We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8de9ac commit 45143cbCopy full SHA for 45143cb
pig-latin/pig_latin.py
@@ -60,7 +60,7 @@ def process_word(text: str) -> str:
60
i = get_consonant_cluster_length(text)
61
return f"{text[i + 1 :]}{text[: i + 1]}ay"
62
63
- # raise ValueError(f"Unhandled word in Pig Latin translation: '{text}'")
+ raise ValueError(f"Unhandled word in Pig Latin translation: '{text}'")
64
65
66
def is_rule_3(text: str) -> bool:
0 commit comments