Python - Advanced Exception Handling
Identify the problem in this code:
def check_value(x):
if x < 0:
raise ValueError(
else:
return x
print(check_value(-1))