conloop = False
while conloop == False:
if solocontinue == "Y" or solocontinue == "y" or solocontinue == "Yes" or solocontinue == "yes":
os.system("clear")
sololoop += 1
conloop = True
elif solocontinue == "N" or solocontinue == "n" or solocontinue == "No" or solocontinue == "no":
if len(solos) <= 1:
solos.remove(soloplayer)
print()
print("You do not have atleast 2 contestants!")
time.sleep(1)
os.system('clear')
sololoop += 1
conloop = True
elif len(solos) >= 2:
print()
print("Returning to menu...")
time.sleep(1)
os.system('clear')
conloop = True
menu()
For some reason, despite the indentations being done correctly, Python tells me that line 10 (in this snippet) is indented incorrectly. Does anyone have an idea why this could be happening?