Python - Inheritance and Code Reuse
Identify the issue in the following code that attempts to override a method:
class Animal:
def make_sound(self):
print('Generic sound')
class Cat(Animal):
def make_sound():
print('Meow')
pet = Cat()
pet.make_sound()