forked from mrlan/EnglishPal
refactor: refactor the way to check article level
parent
f64d06fbbf
commit
01ecc83768
|
@ -91,10 +91,7 @@ def article():
|
||||||
question = data.get("question", "")
|
question = data.get("question", "")
|
||||||
level = data.get("level", "4")
|
level = data.get("level", "4")
|
||||||
if content:
|
if content:
|
||||||
try: # check level
|
|
||||||
if level not in ['1', '2', '3', '4']:
|
if level not in ['1', '2', '3', '4']:
|
||||||
raise ValueError
|
|
||||||
except ValueError:
|
|
||||||
return "Level must be between 1 and 4."
|
return "Level must be between 1 and 4."
|
||||||
add_article(content, source, level, question)
|
add_article(content, source, level, question)
|
||||||
_update_context()
|
_update_context()
|
||||||
|
|
Loading…
Reference in New Issue