class Fruit: # [too-many-instance-attributes] def __init__(self): # max of 7 attributes by default, can be configured self.worm_name = "Jimmy" self.worm_type = "Codling Moths" self.worm_color = "light brown" self.fruit_name = "Little Apple" self.fruit_color = "Bright red" self.fruit_vitamins = ["A", "B1"] self.fruit_antioxidants = None self.secondary_worm_name = "Kim" self.secondary_worm_type = "Apple maggot" self.secondary_worm_color = "Whitish"