def make_cssstyle_proto(property, value): """Creates a CSSStyle with the given values""" css_style = CSSStyle() css_style.property = property css_style.value = value return css_style
def _css_style(prop, value): css_pb = CSSStyle() css_pb.property = prop css_pb.value = value return css_pb