Python - Inheritance and Code Reuse
Find the error in this code:
class Parent:
def greet(self):
print("Hello")
class Child(Parent):
def greet(self):
print("Hi")
obj = Child()
obj.greet