for key in keys.splitlines():
if key == keyInput:
request_main()
elif not key == keyInput:
exit_program()
Hi, this is the code I am having trouble with; specifically line 7's else if statement, where I am getting an error for Inconsistent use of tabs and spaces in indentation. I don't see where it is inconsistent; there's no other errors elsewhere in my whole code for this. I have tried many different spacings for indentations to no avail, thank you.