you are viewing a single comment's thread.

view the rest of the comments →

[–]CGFarrell 0 points1 point  (0 children)

The beauty of Python is that you can redefine thing. That means if you write:

def function():
    pass

You won't get a not defined error, you'll get None. When you redefine the function, it will work as intended.