diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7c8d51262..c36fc39f0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -55,7 +55,7 @@ repos: args: [--number] language: python additional_dependencies: - - mdformat-mkdocs==5.1.1 + - mdformat-mkdocs==5.1.2 - repo: https://github.com/DavidAnson/markdownlint-cli2 rev: v0.20.0 @@ -73,7 +73,7 @@ repos: - id: reuse-lint-file - repo: https://github.com/crate-ci/typos - rev: v1.40.0 + rev: v1.42.0 hooks: - id: typos @@ -106,12 +106,12 @@ repos: # zizmor detects security vulnerabilities in GitHub Actions workflows. - repo: https://github.com/woodruffw/zizmor-pre-commit - rev: v1.18.0 + rev: v1.20.0 hooks: - id: zizmor - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.35.0 + rev: 0.36.0 hooks: - id: check-github-workflows args: ["--verbose"] @@ -124,7 +124,7 @@ repos: # `actionlint` hook, for verifying correct syntax in GitHub Actions workflows. # Some additional configuration for `actionlint` can be found in `.github/actionlint.yaml`. - repo: https://github.com/rhysd/actionlint - rev: v1.7.9 + rev: v1.7.10 hooks: - id: actionlint language: golang diff --git a/opal/core/forms/layouts.py b/opal/core/forms/layouts.py index 32480b3bc..3f4d24a83 100644 --- a/opal/core/forms/layouts.py +++ b/opal/core/forms/layouts.py @@ -188,7 +188,7 @@ def __init__(self, *fields: Any) -> None: class RadioSelect(Field): """ - Custom radio select widget to be used for radio buttion tooltip, help_text, errors. + Custom radio select widget to be used for radio button tooltip, help_text, errors. Triggers validation via `up-validate` on selection to let the form react to the selection. Supports option tooltip on the radio select label.