Add autogen parameter.
This commit is contained in:
parent
d7dc20e8dc
commit
130175d474
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
def grade(key):
|
||||
def grade(autogen, key):
|
||||
if key.find("st4r_w4rs_1s_b35t_:D") != -1:
|
||||
return True, "Great job!"
|
||||
return False, "Nope. Try reading the help file"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
def grade(key):
|
||||
def grade(autogen, key):
|
||||
if key.find("col0rs_b4rcod3s_and_b1nary_f?n") != -1:
|
||||
return True, "Nice! See, it wasn't nonsense after all :)"
|
||||
return False, "My flags are also unlisted. I really don't like highlighting either."
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
def grade(key):
|
||||
def grade(autogen, key):
|
||||
if key.find("that_wasn't_so_hard_n0w_was_it?") != -1:
|
||||
return True, "Yay! Now please tell me you didn't actually paint it . . ."
|
||||
return False, "Nope!"
|
||||
|
|
Loading…
Reference in a new issue