1# buildifier: disable=module-docstring 2# buildifier: disable=provider-params 3MyPoorlyDocumentedInfo = provider() 4 5MyFooInfo = provider( 6 doc = "Stores information about a foo.", 7 fields = ["bar", "baz"], 8) 9 10# buildifier: disable=unsorted-dict-items 11MyVeryDocumentedInfo = provider( 12 doc = """ 13A provider with some really neat documentation. 14Look on my works, ye mighty, and despair! 15""", 16 fields = { 17 "favorite_food": "A string representing my favorite food", 18 "favorite_color": "A string representing my favorite color", 19 }, 20) 21