In the template below you can see a hierarchy of robots. There is a base class Robot and a subclass ServiceRobot. Objects of the class Robot have two attributes: name and variety. variety represents the function of the robot, for example, service or military. The get_info method returns information about a particular instance.
The ServiceRobot represents the "service" variety of robots. Objects of this class have only the name attribute.
Your task is to change the __init__ method of the class ServiceRobot so that get_info() returns the correct information for the objects of ServiceRobot. There are several ways to do it, but we ask you to use the super() function.