You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#! what is a dataclass? -> a built in decorator in python (a decorator is something that will modify that is defined below it, it could be applied on a class, a function or a method, examples of decorators are @staticmethod, @classmethod), the @dataclass decorator populates the 3 common member methods: __init__ , __repr__ and the __eq__ method these are dunder methods or magic methods that allwos us to provide some special functionality to our python classes