def print_item()

in scripts/create_master_checklist.py [0:0]


def print_item(item):
    text= item["text"]
    cat = item["category"]
    subcat = item["subcategory"]
    id = item["id"] if "id" in item else ""
    checklist = item["checklist"] if "checklist" in item else ""
    svcs = str(item["services"]) if "services" in item else ""
    print("{0: <25.25} {1: <10.10} {2: <25.25} {3: <25.25} {4: <80.80} {5: <25.25}".format(checklist, id, cat, subcat, text, svcs))