Files
AutoMetabuilder/backend/autometabuilder/workflow/plugins/utils/utils_not.py
2026-01-10 13:39:13 +00:00

8 lines
214 B
Python

"""Workflow plugin: boolean not."""
from ...value_helpers import ValueHelpers
def run(_runtime, inputs):
"""Negate a boolean value."""
return {"result": not ValueHelpers.coerce_bool(inputs.get("value"))}