Consider the following class:
class Vector2(): def __init__(self, x: float = 0, y: float = 0) -> None: self.x = x self.y = y