in pfe-adv-sep/lab-02/app.py [0:0]
def get_random_pet():
if random.choice([True, False]):
random_breed = random.choice(dog_breeds)
animal_type = "dog"
else:
random_breed = random.choice(cat_breeds)
animal_type = "cat"
return jsonify({"animal": animal_type, "breed": random_breed})