Here's my code:
def options():
selection=int(input("#>"))
if selection == 1:
#Connect
elif selection == 2:
#Modules
print("Modules")
elif selection == 3:
#Checking Internet
checkInternetConnection()
elif selection == 99:
#Exit
shutdown()
else:
print "Unknown Option Selected!"
sleep(100)
sys.clear()
start()
Every time I run i get this error:
File "main.py", line 41
elif selection == 2:
^
IndentationError: expected an indented block
I am probably being a noob here but please may someone help?! Thanks