Text item TextItem ¶ Bases: BaseFormItem A text item. Source code in pygsuite/forms/generated/text_item.py 6 7 8 9 10 11 12 13 14 15class TextItem(BaseFormItem): """ A text item. """ def __init__(self, object_info: Optional[Dict] = None): # noqa: C901 generated: Dict = {} object_info = object_info or generated super().__init__(object_info=object_info)