Consider this imported class and function:
class Person: def __init__(self, age: int): self.age = age def get_person() -> Person: return P