๐ Bug HuntPY Python Easy+10 XP
Wrong Comparison
This always returns True for None checks.
๐ Find the bug
1
def is_valid(value):2
if value == None:3
return False4
return True๐ The bug is on line 2