[Solved] Python 2.7 IndentationError [closed]
Python expects 4 spaces or a tab to indent and align code – similar to Java expecting curly {} brackets are the start of a loop, method or class etc. def some_function(): somecode morecode … should be formatted as def some_function(): somecode morecode … It appears that your code throws an exception on line 127, … Read more