mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-30 08:45:00 +00:00
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)}
|