mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-30 00:34:58 +00:00
8 lines
173 B
Python
8 lines
173 B
Python
"""Workflow plugin: absolute value."""
|
|
|
|
|
|
def run(_runtime, inputs):
|
|
"""Calculate absolute value."""
|
|
value = inputs.get("value", 0)
|
|
return {"result": abs(value)}
|