mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-05-06 11:39:38 +00:00
4776082c34
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
12 lines
246 B
Python
12 lines
246 B
Python
"""Workflow plugin: maximum value."""
|
|
|
|
|
|
def run(_runtime, inputs):
|
|
"""Find maximum value in numbers."""
|
|
numbers = inputs.get("numbers", [])
|
|
|
|
if not numbers:
|
|
return {"result": None}
|
|
|
|
return {"result": max(numbers)}
|