Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions geoh5py/ui_json/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,8 @@ class BaseForm(BaseModel):
:param group_dependency_type: Controls whether the ui group is
enabled or visible when the group dependency is enabled if
optional or True if a bool type.
:param verbose: Sets the level at which Geoscience Analyst will make
the parameter visible in a ui.json file. Verbosity level is set
within Analyst menu.
:param placeholder_text: Text displayed in ui element when no data
has been provided.
"""

model_config = ConfigDict(
Expand All @@ -117,6 +116,7 @@ class BaseForm(BaseModel):
dependency_type: DependencyType = DependencyType.ENABLED
group_dependency: str = ""
group_dependency_type: DependencyType = DependencyType.ENABLED
placeholder_text: str = ""

@classmethod
def infer(cls, data: dict[str, Any]) -> type[BaseForm]:
Expand Down