Python Chapter 7-Classes #7

Am stack going through your lesson Complete Python Mastery at Chapter7 (Comparing Objects and performing arithmetic operation)
Below is the error I get
Any help will be appreciated
Thanks

Error Message : combined = point + other
TypeError: unsupported operand type(s) for +: ‘Point’ and ‘Point’

Operation overloading for an add operation is __add__ not __and__.

Thanks,
Its working now