def make_bicycles(bicycles, models, company_inventory):
    another = True
    while another:
        bicycle_production(bicycles, models, company_inventory)
        another = yes_or_no("Would you like to add another order of bicycles?")
def make_bicycles(bicycles, models, company_inventory):
    another = True
    while another:
        bicycle_production(bicycles, models, company_inventory)
        another = yes_or_no("Would you like to add another order of bicycles?")
def make_models(models, CATEGORIES, COLORS, SIZES):
    another = True
    while another:
        make_model(models, CATEGORIES, COLORS, SIZES)
        another = yes_or_no("Would you like to add another model?")
def make_models(models, CATEGORIES, COLORS, SIZES):
    another = True
    while another:
        make_model(models, CATEGORIES, COLORS, SIZES)
        another = yes_or_no("Would you like to add another model?")