Python - Class Methods and Static Methods
Find the error in this code snippet:
class Person:
def __init__(self, name):
self.name = name
@classmethod
def greet(cls):
print(f"Hello, {name}!")
Person.greet()